我正在寻找一种使函数GM_addStyle从本地驱动器上的@resource直接添加CSS的方法(我使用macOS)。我的目标是加快此CSS文件的开发。
现在,我将更改复制并粘贴到Tampermonkey>保存用户样式并重新加载页面。
不起作用:
// ==UserScript==
// @name my style
// @version 0.1
// @description a few friendliness tweaks
// @author thomas
// @match http://stackoverflow.com/*
// @resource my_style file:///Users/thomas/style.css
// @grant GM_addStyle
// ==/UserScript==
(function() { 'use strict'; GM_addStyle(GM_getResourceText('my_style')); })();
谢谢