gpt4 book ai didi

android - 在 Firefox for Android 版本 42 或更新版本中安装未签名的 XPI

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:01:59 26 4
gpt4 key购买 nike

我正在尝试重新开始一个旧项目,这是我正在开发的 Firefox for Android 的扩展。我有 2 部手机,一部是个人手机,一部是我的工作手机。在我的中,我有一个旧版本的 Firefox (40)。它的工作原理和以前完全一样。但是,在我工作的手机(Firefox 46)的升级版中,我无法安装.xpi。我总是看到带有文本“Firefox 阻止在您的设备上安装附加组件”的“已阻止的附加组件”弹出窗口:

[ 1

我有偏好 xpinstall.signatures.required = false。但是,它似乎不起作用。我还启用了 Android 调试。我这样做:

#4 - This will copy the XPI to the phone SD card.
adb push $OUTPUT_DIR/$APP_NAME.xpi /sdcard/$APP_NAME.xpi;

#5 - This will start the Firefox App with the XPI to install
adb shell am start -a android.intent.action.VIEW -c android.intent.category.DEFAULT -d file:///mnt/sdcard/$APP_NAME.xpi -n $ANDROID_APP_ID/.App;

在旧版本的 Firefox 中它可以工作;在新的中,没有。原因如下:

Our first one aims to make add-on signing a little easier for developers. This API enables you to upload an XPI and get back the signed add-on if it passes all the validation checks.

和:

Firefox 48: (Pushed from Firefox 46). Release and Beta versions of Firefox for Desktop will not allow unsigned extensions to be installed, with no override. Firefox for Android will enforce add-on signing, and will retain a preference — which will be removed in a future release — to allow the user to disable signing enforcement.

但是我需要能够在没有验证的情况下进行编程:每次我引入一个小的变化时都必须签署扩展是非常有压力的(即使只是为了检查某些东西是否有效)。

我已经尝试安装夜间版本,因为它是为开发人员准备的。我将 xpinstall.signatures.required 更改为 false。但是,行为是相同的消息。

那么,我们应该如何以这种方式发展呢?这太不切实际了!

最佳答案

我用 Walkthrough 测试了这个来自 MDN 的示例。我运行的是 Firefox 48.0 发行版。此答案假定 xpinstall.signatures.requiredabout:config 中设置为 false

如果直接导航到 file:/// URL:
,则不会安装附加组件Firefox 似乎已通过直接导航到 file:/// 链接来禁用安装未签名的扩展(我尚未测试已签名的扩展。)。因此,使用 adb shell am start -a android.intent.action.VIEW 方法使用 intent 使 Firefox 导航到 file:///mnt/sdcard/extentionFile。 xpi URL 只会显示“已阻止的附加组件”对话框,没有允许的选项,您在问题中包含了屏幕截图。如果您手动输入 URL,此对话框是相同的。

您可以在未签名的情况下安装附加组件:

您可以通过在 Firefox 中导航到包含 .xpi 文件(例如 file:///mnt/sdcard/ )的目录,然后单击/触摸该文件来加载未签名的扩展。

因此,对于 adb,您会希望它打开目录,而不是尝试让 Firefox 直接打开文件。根据您的问题,您将要使用的 adb 命令是:

adb shell am start -a android.intent.action.VIEW -c android.intent.category.DEFAULT -d file:///mnt/sdcard/ -n $ANDROID_APP_ID/.App;

然后,您需要在手机上选择 $APP_NAME.xpi 文件。您将看到一个或多个屏幕,您可以通过这些屏幕单击以安装您的附加组件。

这些是我在测试时截取的屏幕。为了有一个空目录,我使用了 /mnt/sdcard/testing/而不是 /mnt/sdcard/

首先,我使用 adb 导航到 Firefox 中的目录(这是为了方便,您可以通过手机的用户界面导航到它)使用命令:

adb" shell am start -a android.intent.action.VIEW -c android.intent.category.DEFAULT -d file:///mnt/sdcard/testing/ -n org.mozilla.firefox/.App

这会导致 Firefox 打开目录 ( file:///mnt/sdcard/testing/ ):

单击/选择您的.xpi 文件。在本例中,即 view-source.xpi

将显示“已阻止的加载项”对话框。此对话框将具有“允许”安装的选项。 [您可以通过在 about:config 中将 xpinstall.whitelist.required 设置为 false 来跳过此对话框。但是,这仍然不会让您通过使用 Intent 直接导航到文件或将其输入到 Firefox UI 中来安装]:

然后,会出现一个对话框,询问您是否要安装未经验证的附加组件:

安装完成后:

关于android - 在 Firefox for Android 版本 42 或更新版本中安装未签名的 XPI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36049137/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com