较暗的 Google 用户脚本在 Tampermonkey 4.7 中不起作用

Darker Google userscript not working in Tampermonkey 4.7

我正在尝试在 Tampermonkey 4.7(适用于 Safari 12)中安装 Darker Google 用户脚本,但无法正常工作。

由于我是 Tampermonkey 的新手,所以我真的不知道该把我的手放在哪里。

在 Tampermonkey 的仪表板中,我看到此用户脚本与任何特定网站都不匹配,而例如 Darker Facebook 显示“*.facebook.com”并且它有效,但也许这只是一个错误猜猜

用户脚本的开头是:

(function() {var css = "";
css += [
        "/* Darker Google by Zigboom Designs */",
        "",
        "@namespace url(http://www.w3.org/1999/xhtml);"
    ].join("\n");
if (false ||
    (document.location.href.indexOf("http://blogsearch.google") == 0) ||
    (document.location.href.indexOf("http://books.google") == 0) ||
    (document.location.href.indexOf("http://209.85.165.104") == 0) ||
    (document.location.href.indexOf("http://translate.google") == 0) ||
    (document.location.href.indexOf("http://video.google") == 0) ||
    (document.location.href.indexOf("https://encrypted.google") == 0) ||
    (document.location.href.indexOf("https://translate.google") == 0) ||
    (document.location.href.indexOf("http://scholar.google") == 0) ||
    (document.location.href.indexOf("https://scholar.google") == 0) ||
    (document.location.href.indexOf("http://images.google") == 0) ||
    (document.location.href.indexOf("https://images.google") == 0) ||
    (document.location.href.indexOf("https://www.google.com/fonts") == 0) ||
    (new RegExp("^https?://www\.google\.[a-z.]*/(?!calendar|nexus|adsense|analytics|maps).*$")).test(document.location.href))

这让我觉得 应该 匹配任何 *.google.com 网站...但它不匹配。

这是因为用户脚本不在页面中 运行ning。添加以下行,保存并重新加载页面。

// @match *://*.google.com/*

以上内容使 Google 网站上的 运行 用户脚本。

对于匹配模式,refer here