Angular 2 Edge扩展未加载

时间:2017-05-29 08:59:06

标签: angular microsoft-edge microsoft-edge-extension

我想使用Angular 2构建Edge for Edge。构建应用程序并使用Microsoft Edge Extension Toolkit更改Manifest.json后,我在Edge中上传应用程序。 如果我想使用扩展,应用程序不会加载组件。

Extension Popup

My Manifest.json:

{
"manifest_version": 2,
"name": "Addon",
"short_name": "Addon",
"description": "Addon",
"version": "1.0.0",
"author": "asd",
"icons": {
    "1": "favicon.ico"
},
"browser_action": {
    "default_title": "Open a new tab to view your bookmarks.",
    "default_popup": "index.html",
    "default_icon": {
        "1": "favicon.ico"
    }
},
"permissions": [
    "tabs",
    "<all_urls>",
    "fontSettings"
],
"background": {
    "page": "index.html",
    "persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
}
}

是否有未支付或丢失的清单密钥?

0 个答案:

没有答案