内容脚本匹配意外模式

时间:2018-11-11 19:19:47

标签: javascript google-chrome-extension manifest.json

我有一个内容脚本,我只希望它与https://fantasy.premierleague.com/a/team/my相匹配,所以我在manifest.json

中添加了以下内容
"content_scripts": [
  {
    "matches": ["*://fantasy.premierleague.com/a/team/my"],
    "js": ["myTeam.bundle.js"],
    "run_at": "document_idle"
  }
],

但是,它仍与https://fantasy.premierleague.com/a/homehttps://fantasy.premierleague.com/a/team/123456/event/12之类的页面匹配。为什么会这样?

即使添加以下内容

"exclude_matches": ["https://fantasy.premierleague.com/a/home"],

它仍然在该页面上执行!

0 个答案:

没有答案