我想为 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");
})();
有人知道这个问题的解决方案吗?