Chrome扩展程序未在使用https的网站上加载

时间:2013-08-12 09:30:31

标签: google-chrome google-chrome-extension

我们开发了Chrome扩展程序,它适用于没有https协议的网站。但是,它不会在使用https协议运行的站点上加载。

有没有解决此问题的工作?

1 个答案:

答案 0 :(得分:0)

在您的清单文件中,matches中的content_scripts应该是这样的:

"content_scripts": [
    {
        "matches": [
            "http://*/",
            "https://*/"
        ],
        ...
    },
    ...
]