Skip to content

Instantly share code, notes, and snippets.

@Gishi1
Gishi1 / script.user.js
Last active May 6, 2024 23:43
WebNovel genre and paywall filter
// ==UserScript==
// @name WebNovel genre and paywall filter
// @namespace https://www.webnovel.com/
// @version 1.10
// @description Genre filter and paywall filter for WebNovel.com!
// @author idMysteries and Gishi
// @match https://www.webnovel.com/stories/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=webnovel.com
// @license Unlicense
// @grant none
@Gishi1
Gishi1 / server.js
Created April 10, 2017 17:47 — forked from omkz/server.js
node.js - routing aplikasi node.js
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 '/':
@Gishi1
Gishi1 / funimation-downloader.user.js
Last active November 22, 2020 21:51
Funimation Downloader
// ==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