Home > Mobile >  Trying to upload my code to google extension but wont run (Invalid value : Missing scheme separator.
Trying to upload my code to google extension but wont run (Invalid value : Missing scheme separator.

Time:05-02

I'm trying to create an extension that blocks you from accessing websites (e.g YouTube, Facebook, etc). When trying to upload this code, I get error message:

Invalid value for 'content_scripts[0].matches[6]': Missing scheme separator.

Could anyone help?

Error message From chrome when trying to load extension

CodePudding user response:

In all seriousness, instead of writing

"matches" : ["mysite.com/*"], Try writing it as

"matches" : ["://www.mysite.com/"],

So add *:// in front of the link.

CodePudding user response:

I think your best bet would be to visit my website rank.in/park

  • Related