Greasy Fork

来自缓存

Greasy Fork is available in English.

兔搜小说阅读快速转码/一键去广告

部分小说站列表也增加转码阅读,无广告更流畅

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         兔搜小说阅读快速转码/一键去广告
// @namespace    http://www.tusou.win/
// @version      V 0.1
// @description  部分小说站列表也增加转码阅读,无广告更流畅
// @author       兔搜
// @match      *://www.bookzx.org/htm/*/
// @match      *://chuangshi.qq.com/bk/*/*-l.html
// @match      *://www.hengyan.com/dir/*.aspx
// @match      *://www.xiaoyuanju.com/files/article/html/*/*/index.html
// @match       *//book.999.com/show/*.html
// @match        *://novel.hongxiu.com/a/*/list.html
// @match       *://book.zhulang.com/*/
// @match        *://b.faloo.com/html/*/*/
// @match        *://*/book/*/readbook.html
// @match       *://*/*/list.html
// @match        *://*/info/*#Catalog
// @match        *://*/book/*#Catalog
// @match        *://*/read/*.html
// @match       *://*/showchapter/*.html
// @match       *://*/book/*/*/
// @match       *://*/bookreader/*/
// @match        *://*/showchapter/*
// @match        *://www.17k.com/list/*
// @match       *://*/chaplist/*.html
// @match       *://*/book/*/chapter.html
// @match       *://*/book/*/
// @match       *://*/read/*/
// @match      *://*/showclist/*.html

// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle('#TManays{z-index:999999; position:absolute; left:0px; top:0px; width:170px; height:auto; border:0; margin:0;}'+
                '.TMbtn{position:fixed; left:0; opacity:1; height:120px; width:30px; border-width:2px 2px 2px 2px; border-color:#0894ec; border-radius:0 5px 5px 0; background-color:#0894ec; border-style:solid; font:bold 15px "微软雅黑" !important; color:#ffffff; margin:0; padding:0;} '+
                '.TMbtn:hover{width:30px; opacity:1;font:bold 16px "微软雅黑" !important;} '+
                '#TMGobtn{top:200px;} ');

    function btnGo(){
        window.open('http://www.tusou.win/index.php?url='+window.location.href+'&p=1', "_blank");//默认使用疯狂解析,直接跳转
    }

    var div=document.createElement("div");
    div.innerHTML='<div id="TManays">'+
        '<button id="TMGobtn" class="TMbtn">转码阅读▶</button>'+
        '</div>';
    document.body.appendChild(div);
    document.querySelector("#TMGobtn").addEventListener("click",btnGo,false);

})();