Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
125 views
in Technique[技术] by (71.8m points)

javascript - Why can I not put a certain URL in a Chrome Extension JSON?

I am trying to code a Chrome Extension, but I am getting an error of something relating to the URL.

Code:

{
  "name": "Axqua's Themes for V3rmillion",
  "version": "1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": ["https://v3rmillion.net]",
      "js":  ["content.js"]
    }
  ]
}

Error:

Required value 'content_scripts[0].matches' is missing or invalid.

However, when I put <all_urls>, it works perfectly.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think you will have to do https://*.v3rmillion.net/* instead of just the link.

Chrome Dev Docs for Ref


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...