您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Файлообменники без сторонних загрузчиков
当前为
// ==UserScript== // @name Без загрузчиков // @name:en Without external downloaders // @namespace FIX // @version 0.1 // @description Файлообменники без сторонних загрузчиков // @description:en File hosting without external downloaders // @author raletag // @match *://file-space.org/files/freeget/* // @match *://file4.pro/go/view/* // @grant none // @compatible Opera 15+ // @compatible Chrome // ==/UserScript== (function() { 'use strict'; function isBase64(str) { try { return !!str && !!window.atob(str); } catch (err) { return false; } } var hostname = window.location.hostname, scripts = {}; scripts['file-space.org'] = function() { document.addEventListener('DOMNodeInserted',function(e){ if (!e || !e.target || !(e.target instanceof HTMLElement)) return; var links = e.target.getElementsByTagName('a'), url64, decode64, url; for (var i = 0; i < links.length; i++) { url64 = decodeURIComponent((links[i].href.match(/\/\/(.*)\/(.*)/)||[])[2]); if (isBase64(url64)) { decode64 = decodeURIComponent(window.atob(url64)); url = (decode64.match(/\;(.*)\;name/i)||[])[1]; if (url) { var div = document.getElementById('link_field'); if (div) { var newdiv = document.createElement('div'); newdiv.innerHTML = '<div style="font-size:20px; padding-bottom: 10px;padding-top: 10px; text-align: center;width: 700px;"><a id="al4" class="al3" target="_blank" href="'+url+'">СКАЧАТЬ ФАЙЛ БЕЗ ЗАГРУЗЧИКА</a></div>'; div.insertBefore(newdiv, div.firstChild); } return; } } } }); }; scripts['file4.pro'] = function() { var link = document.getElementsByClassName('well tac')[0].getElementsByClassName('btn btn-danger btn')[0], url64, decode64, url; url64 = decodeURIComponent((link.href.match(/\/\/(.*)\/(.*)/)||[])[2]); if (isBase64(url64)) { decode64 = decodeURIComponent(window.atob(url64)); url = (decode64.match(/\;(.*)\;name/i)||[])[1]; if (url) { link.href = url; link.innerHTML += '<br>(без загрузчика)'; } } }; scripts[hostname](); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址