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
| // early experiments with node had mysterious double requests | |
| // turned out these were for the stoopid favicon | |
| // here's how to short-circuit those requests | |
| // and stop seeing 404 errors in your client console | |
| var http = require('http'); | |
| http.createServer(function (q, r) { | |
| // control for favicon |
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
| /** | |
| * Vkontakte JavaScript API wrapper. | |
| * | |
| * This script meant for simplify development of Vkontakte applications | |
| * using Vkontakte API. Using vk_api() object you can call API methods, | |
| * get HTTP-GET parameters (aka flashVars) in a simple way. You don't need | |
| * to calculate signature parameter, don't need to form request string, | |
| * don't need to implement JSONP-communication. You just connect this script | |
| * to HTML-page using <script> tag, call one function to initialize object | |
| * and one function to perform API-request! |
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 VKGetLink | |
| // @description Script for downloading audio and video files from the vk.com. Based on Ivan Snegirev's VK-Downloader http://userscripts-mirror.org/scripts/show/151571 | |
| // @author Mist Poryvaev | |
| // @version 1.0.2 | |
| // @include https://*vk.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| function audio() |
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 play on tumblr | |
| // @namespace tag:[email protected],2008-04-03:/coderepos.org | |
| // @description play current image or video on tumblr dashboard with 'ENTER' key. open notes with 'h' key. like it with 'l' key. if won't work, pray on tumblr! | |
| // @include http://www.tumblr.com/dashboard* | |
| // @include http://www.tumblr.com/show/* | |
| // @include http://www.tumblr.com/tumblelog/* | |
| // @include http://www.tumblr.com/tagged/* | |
| // ==/UserScript== |
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 YouTube Enhancer | |
| // @namespace http://iulianonofrei.com | |
| // @version 0.5 | |
| // @author Iulian Onofrei | |
| // @updateURL https://gist.github.com/raw/c6ca9ed14d388e6e7e8278cebc3dfb29/YouTube_Enhancer.user.js | |
| // @match https://youtube.com/* | |
| // @match https://www.youtube.com/* | |
| // @require https://gist.githubusercontent.com/raw/dab432d4b4bbb672896b/min.js | |
| // @grant GM_addStyle |
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 Video containers | |
| // @namespace gm.cha0s | |
| // @description Resize video containers | |
| // @include http://www.promptfile.com/* | |
| // @include http://www.movshare.net/video/* | |
| // @include http://movpod.in/* | |
| // @include http://vodlocker.com/* | |
| // @include http://bestreams.net/* | |
| // @include http://www.nowvideo.sx/video/* |
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 Tumblr Bookmarker | |
| // @description Bookmark posts on your dash to return to later | |
| // @namespace http://userscripts.org/users/113977 | |
| // @include http://www.tumblr.com/blog/* | |
| // @include http://www.tumblr.com/drafts* | |
| // @include http://www.tumblr.com/queue* | |
| // @include http://www.tumblr.com/likes* | |
| // @include http://www.tumblr.com/messages* | |
| // @include http://www.tumblr.com/dashboard* |
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 Tumblr Dashboard High-Res Photos | |
| // @namespace http://cxx.tumblr.com/ | |
| // @include http://www.tumblr.com/* | |
| // @version 0.0.5.2.20101020 | |
| // ==/UserScript== | |
| // original : http://userscripts.org/scripts/source/43621.user.js? | |
| (function(){ | |
| function $(selectors, context) { |
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 InoReader Full Feed | |
| // @description Read full story in InoReader. / InoReaderで記事の全文を表示します。 | |
| // @description:en Read full story in InoReader. | |
| // @description:ja InoReaderで記事の全文を表示します。 | |
| // @id InoReaderFullFeed | |
| // @namespace https://userscripts.org/scripts/show/172238 | |
| // @homepage https://greasyfork.org/scripts/897-inoreader-full-feed | |
| // @include http://inoreader.com/* | |
| // @include https://inoreader.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
| // go to the youtube video page using iPhone as user-agent and run the following script: | |
| var xhr=new XMLHttpRequest(); | |
| xhr.open("GET",location.href,true); | |
| xhr.onload=function(){ | |
| var r=xhr.responseText; | |
| r=r.substring(r.indexOf('url_encoded_fmt_stream_map'),r.length); | |
| r=r.substring(r.indexOf('url=http')+4,r.length); | |
| r=r.split('url='); | |
| location.href= |