This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ==UserStyle== | |
| @ *name WebNovel Enhanced Dark + Filter Styling - FIXED | |
| @namespace WebNovelDarkEnhanced | |
| @version 5.0 | |
| @description Complete dark theme with book filtering styling for WebNovel.com - Fixed image visibility | |
| @author idMysteries and Gishi | |
| @match https://www.webnovel.com/* | |
| @run-at document-start | |
| ==/UserStyle== */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name WebNovel genre and paywall filter | |
| // @namespace https://www.webnovel.com/ | |
| // @version 1.28 | |
| // @description Genre filter and paywall filter for WebNovel.com! | |
| // @author idMysteries and Gishi | |
| // @match https://www.webnovel.com/stories/* | |
| // @match https://www.webnovel.com/tags/* | |
| // @match https://www.webnovel.com/category/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=webnovel.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var http = require("http"); | |
| var url = require('url'); | |
| var fs = require('fs'); | |
| var server = http.createServer(function(request, response){ | |
| console.log('Connection'); | |
| var path = url.parse(request.url).pathname; | |
| switch(path){ | |
| case '/': |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Funimation Downloader | |
| // @namespace funimation-downloader | |
| // @description downloads from funimation | |
| // @updateURL https://gist.githubusercontent.com/raw/e20456e1f36d05db74c5dde6308aa282/funimation-downloader.meta.js | |
| // @downloadURL https://gist.githubusercontent.com/raw/9e7f9272530c51271c951ff71d02d8d5/funimation-downloader.user.js | |
| // @include http://www.funimation.com/shows/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js | |
| // @version 2 | |
| // @grant none |