边缘扩展标志失败

时间:2017-08-14 03:22:53

标签: jsonschema microsoft-edge-extension

我正在将现有Chrome扩展程序移植到Microsoft Edge。 当我在Edge中将其作为临时扩展加载时,扩展程序可以正常工作。

现在我要打包并签名。该包已成功生成。但是当我尝试使用Windows应用认证工具包进行签名时,它会失败,并显示以下错误:

Edge extension manifest.json
Error Found: The JSON schema validation test detected the following errors:
Validation failed: Data does not match any schemas from "anyOf"
Schema location: /allOf/1/dependencies/background/anyOf
Manifest location: 
Validation failed for extension manifest: Extension\manifest.json
Impact if not fixed: Microsoft Edge extensions that violate the Windows Store certification requirements can’t be submitted to the Windows Store.
How to fix: Extension’s manifest.json must include valid entries for all required and specified fields. Please resolve the entries and conflicts above.

我用来打包扩展程序的命令:

manifoldjs -l debug -p edgeextension -f edgeextension -m EdgeExtension\manifest.json
manifoldjs -l debug -p edgeextension package Test\edgeextension\manifest\

我的清单文件:

{
    "author": "Test",
    "background": {
        "page": "Agent/Ext/bg-loader.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "<all_urls>"
            ],
            "js": [
                "Agent/Content/contentLoader.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy" : "script-src 'self'; object-src 'self'",
    "default_locale" : "en",
    "description": "Test Web Applications Using Google Chrome",
    "name": "Test",
    "permissions": [
        "nativeMessaging",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "cookies",
        "browsingData",
        "debugger",
        "<all_urls>",
        "notifications",
        "unlimited_storage"
    ],
    "version": "1.0.0.0",
    "-ms-preload": {
        "backgroundScript": "backgroundScriptsAPIBridge.js",
        "contentScript": "contentScriptsAPIBridge.js"
    },
    "minimum_edge_version" : "33.14281.1000.0"
}

1 个答案:

答案 0 :(得分:1)

this thread的Alexey Sidorov的帮助下,我想出了如何签署边缘扩展。

  

注意:请确保在 PowerShell 中执行以下步骤,而不是命令行。

1。创建自签名证书

New-SelfSignedCertificate -Type Custom -Subject "CN=Contoso Software, O=Contoso Corporation, C=US" -KeyUsage DigitalSignature -FriendlyName <Your Friendly Name> -CertStoreLocation "Cert:\LocalMachine\My"

您可以在Microsoft开发人员网站上获取您的应用程序标识中的主题。

友好名称可以是任何字符串。

2. 导出证书

检查指纹:

Set-Location Cert:\LocalMachine\My
Get-ChildItem | Format-Table Subject, FriendlyName, Thumbprint

出于安全原因,您需要输入密码。

$pwd = ConvertTo-SecureString -String <Your Password> -Force -AsPlainText 
Export-PfxCertificate -cert "Cert:\LocalMachine\My\<Certificate Thumbprint>" -FilePath <FilePath>.pfx -Password $pwd

3. 将证书安装到受信任的根证书颁发机构。

在“开始”菜单中键入“管理计算机证书”,导航到“受信任的根证书颁发机构\证书”。右键单击它,All Tasks,Import按照向导完成导入。

4. 使用SignTool对应用进行签名(SignTool随Windows 10 SDK一起安装。请确保它存在于您的系统路径中)

检查扩展程序的哈希算法:

.appx文件中提取AppxBlockMap.xml,检查HashMethod

<BlockMap xmlns="http://schemas.microsoft.com/appx/2010/blockmap" HashMethod="http://www.w3.org/2001/04/xmlenc#sha256">

哈希算法是#之后的值,例如,#sha256表示您使用SHA256作为哈希算法。

SignTool sign /fd <Hash Algorithm> /a /f <Path to Certificate>.pfx /p <Your Password> <File path>.appx

5. 现在,您可以双击安装您的应用。

官方参考资料:

Create a certificate for package signing

Sign an app package using SignTool

相关问题