您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto Generate to www.nextwap.net. thanks @Shivesh96
// ==UserScript== // @name 4shared.com Free Downloader (NextWap) // @namespace BlackMac // @Author Shivesh96 // @description Auto Generate to www.nextwap.net. thanks @Shivesh96 // @icon http://imag.malavida.com/mvimgbig/download-s/4shared-10666-0.jpg // @include http://www.4shared.com/android/* // @include http://www.4shared.com/archive/* // @include http://www.4shared.com/file/* // @include http://www.4shared.com/get/* // @include http://www.4shared.com/mobile/* // @include http://www.4shared.com/mp3/* // @include http://www.4shared.com/music/* // @include http://www.4shared.com/office/* // @include http://www.4shared.com/photo/* // @include http://www.4shared.com/rar/* // @include http://www.4shared.com/video/* // @include http://www.4shared.com/zip/* // @include http://www.4shared.com/mobile/* // @version 1.0.1 // @grant none // ==/UserScript== if (document.domain ="4shared.com") { var urlArray = window.location.href.split('/'); var url=""; for(var i = urlArray.length-1; i>2; i--) { url = urlArray[i]+"/"+url; } window.location.href="http://www.nextwap.net/"+url; }