您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change link 'file://' to 'file://///'
// ==UserScript== // @name Local File Link convert For FF // @version 0.1 // @description Change link 'file://' to 'file://///' // @author Mitsuya Tsujikawa // @require https://code.jquery.com/jquery-1.12.4.js // @include * // @namespace https://greasyfork.org/users/292663 // ==/UserScript== $(function(){ var links, a; links = document.getElementsByTagName('a'); for (var i = 0; i < links.length; i++) { a = links[i]; a.attributes.href.nodeValue = a.attributes.href.nodeValue.replace(/^file:\/{2}/,'file://///'); } });