我想为Todoist编写一个用户脚本,但是--尽管URL匹配--脚本不是在Todoist上运行,而是在其他每个网页上运行。
即使是最简单的例子也无法运行。
// ==UserScript==
// @name Todoist Alert
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://*todoist.com/app/today*
// @icon https://www.google.com/s2/favicons?domain=todoist.com
// @grant GM_log
// ==/UserScript==
(function() {
'use strict';
alert("q");
})();有人知道解决这个问题的办法吗?
发布于 2022-02-24 11:05:21
切换到插件Violent猴子“和它的工作。我仍然不知道是什么问题,但它是解决了我。
https://stackoverflow.com/questions/71237745
复制相似问题