您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Decodes and replaces all links to the direct URI format, bypassing the 3 second wait redirector page.
// ==UserScript== // @name Ihikarinoakariost.info direct link generator. // @namespace http://tampermonkey.net/ // @version 1.0.6 // @description Decodes and replaces all links to the direct URI format, bypassing the 3 second wait redirector page. // @author MooreR [http://moorer-software.com] // @include https://hikarinoakariost.info/* // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js // ==/UserScript== (function() { 'use strict'; var linkSections; var i = 0; var allLinks = $('a'); if(allLinks.length != 0){ $.each( allLinks, function( key, value ) { if(value.href.indexOf('/out/?') != -1){ var linkSections = value.href.split('/?'); value.setAttribute('href', atob(linkSections[1])); } }); } })();