Tampermonkey - Todoist 上的脚本不是 运行

Tampermonkey - Script not running on Todoist

我想为 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");
})();

有人知道解决办法吗?

切换到插件 Violentmonkey”并且它起作用了。我仍然不知道问题是什么。但它已为我解决。