不排除在Firefox扩展的manifest.json中的exclude_matches

时间:2019-11-22 14:35:26

标签: url youtube firefox-addon content-script

我想进行扩展,使其在youtube的每个页面上都隐藏某些div,除了少数(例如频道页面),因此我尝试在manifest.json中使用exclude_match,如下所示:

"content_scripts": [
{
  "exclude_matches": ["*://*.youtube.com/channel/*/"],
   "matches": ["*://*.youtube.com/*"], 
   "css" : ["rmDistract.css"]
}

但是它不排除任何内容,仍然将我的CSS应用于每个页面。 我曾尝试在exclude_matches的末尾删除“ /”,但这样做却相反,并排除了整个网站。

0 个答案:

没有答案