■前スレ
Firefox userChrome.js greasemonkeyスクリプトスレ43
https://egg.5ch.net/test/read.cgi/software/1700794897/
Firefox userChrome.js greasemonkeyスクリプトスレ44
https://egg.5ch.net/test/read.cgi/software/1710342779/
Firefox userChrome.js greasemonkeyスクリプトスレ45
1名無しさん@お腹いっぱい。
2025/03/08(土) 15:39:04.31ID:pOxfyNuN0 OpenWith_1.2.1b.uc.js
60行目
image: "moz-icon:file:///" + BrowserPath[i].split("<>")[0] + "?size=16",
これに変更
image: "moz-icon:file:///" + encodeURIComponent(BrowserPath[i].split("<>")[0]) + "?size=16",
60行目
image: "moz-icon:file:///" + BrowserPath[i].split("<>")[0] + "?size=16",
これに変更
image: "moz-icon:file:///" + encodeURIComponent(BrowserPath[i].split("<>")[0]) + "?size=16",
2025/09/16(火) 17:26:43.19ID:t6C02L3b0
image: "moz-icon:file:///" + BrowserPath[i].split("<>")[0] + "?size=16",
を
image: "moz-icon:file:///" + encodeURI(BrowserPath[i].split("<>")[0] + "?size=16"),
のようにエンコードする
を
image: "moz-icon:file:///" + encodeURI(BrowserPath[i].split("<>")[0] + "?size=16"),
のようにエンコードする
レスを投稿する
