Chrome 版本 107.0.5304.107(正式版本) (64 位)
Tampermonkey 版本 4.18.1
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.douyin.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
console.log("hi" + location.href);
})();
以上脚本不能激活运行,怎么解决?
测试了一下 chrome 老版本,比如 chrome 71 ,发现工作正常。