We developed a Chrome extension and it is working fine for websites with out https protocol. But, it is not loading on sites running with https protocol.
Are there any work around to fix this issue?
We developed a Chrome extension and it is working fine for websites with out https protocol. But, it is not loading on sites running with https protocol.
Are there any work around to fix this issue?
In your manifest file, the matches in content_scripts should be like this:
"content_scripts": [
{
"matches": [
"http://*/",
"https://*/"
],
...
},
...
]