我在以下位置使用相同的 TamperMonkey 脚本:
// @name Show stuff
// @namespace S-MF-OT.SBM
// @version 2024-04-01
// @description Show stuff
// @author [email protected]
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
alert("working...");
})();
该脚本可以在 64 位浏览器中运行,但不能在 Chrome Dev 32 位中运行。当我创建这篇文章时,我刚刚注意到 Chrome Dev 是 32 位的。脚本没有运行是因为 Chrome Dev 是 32 位吗???
这是一台受到严格控制的企业笔记本电脑。所有浏览器都会显示“您的浏览器由您的组织管理”。
---- 已编辑 ----
我能够卸载 32 位版本的 Chrome Dev 并安装 64 位版本。我很震惊域策略允许我这样做,但它确实解决了问题...Tampermonkey 脚本可以在 64 位版本的 Chrome Dev 中工作。