尽管我拥有狭窄的主机权限,但还是出现了“广泛的主机权限”错误

时间:2019-03-13 11:53:11

标签: google-chrome-extension google-chrome-app

发布Chrome扩展程序时,出现以下警告。我不是在请求广泛的主机权限,而只是在8个特定域上的权限:

  

由于以下问题,您的扩展程序可能需要深入   评论:   -广泛的主机权限,而不是请求广泛的主机权限,请考虑使用activeTab权限,或指定用于   您的扩展程序需要访问。两种选择都比   允许完全访问不确定数量的网站,它们可能   帮助缩短审核时间。

     

activeTab权限允许访问选项卡以响应   明确的用户手势。

{   
    "manifest_version": 2,
    "name": "My Amazing Extension", 
    "version": "1.3",
    "description": "It's great", 
    "icons": {
        "16": "img/icon16.png",
        "32": "img/icon32.png",
        "48": "img/icon48.png",
        "128": "img/icon128.png"
    },
    "browser_action": {
        "default_title": "My Amazing Extensions"
    },
    "background": {
        "scripts": ["background.js"]
    },
    "content_scripts": [
    {
        "run_at": "document_start",
        "matches": ["*://www.domain.com/*", "*://www.domain.co.uk/*", "*://www.domain.ca/*", "*://www.domain.de/*", "*://www.domain.fr/*", "*://www.domain.es/*", "*://www.domain.it/*", "*://www.domain.in/*"],
        "js": ["content0.js"]
    }],
    "web_accessible_resources": [
        "font.css",
        "AZSDstyle.css",
        "font.woff2",
        "img/*"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "*://www.domain.com/*",
        "*://www.domain.co.uk/*",
        "*://www.domain.ca/*",
        "*://www.domain.de/*",
        "*://www.domain.fr/*",
        "*://www.domain.es/*",
        "*://www.domain.it/*",
        "*://www.domain.in/*"
    ],
    "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}

1 个答案:

答案 0 :(得分:0)

正如@wOxxOm在他的评论中提到的那样,它很可能被拒绝了,因为检测器有点故障,可能是因为该方案中的*。

在我的情况下,扩展程序在30分钟内被批准,如果存在实际的“广泛许可”问题,而在过去的经验中,批准该问题花了一周或更长的时间,则该批准速度很快。

在单独的行上用*://http://替换https://可能首先避免了此错误。