// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @AuThor You
// @match http://*/*
// @resource icon2 /images/icon.png
// @grant unsafeWindow
// @grant GM_addStyle
// @grant GM_getResourceUrl
// ==/UserScript==
(function() {
'use strict';
// 获取本地路径
const iconPath = GM_getResourceUrl('images/icon.png');
// Your code here...
})();
请问在油猴脚本中如何使用 GM_getResourceUrl ?
上面的代码,在4.11.0版本中, const iconPath = GM_getResourceUrl('images/icon.png') 这句提示 is not defined
在4.18.1版本中, // @grant GM_getResourceUrl 这句提示 is not a valid, const iconPath = GM_getResourceUrl('images/icon.png') 这句提示 is not defined
不明白原因出在哪里,求解决方法,引用的完整代码