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
| alert('めっちょねむい'); |
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
| // -*- coding: utf-8 -*- | |
| // ==UserScript== | |
| // @name They are all 17 years old | |
| // @author HIRATA Yasuyuki <yasu@asuka.net> | |
| // @namespace http://yasu.asuka.net/ | |
| // @version 1.1.1 | |
| // @include http://www.google.tld/search?* | |
| // @include https://www.google.tld/search?* | |
| // @include https://www.google.tld/webhp?* | |
| // @include https://www.google.tld/#q=* |
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 dotinstall auto play | |
| // @description Youtube Player API使った(autoplay=1になってない)動画を自動再生のURLに置換する | |
| // @include http://dotinstall.com/lessons/* | |
| // ==/UserScript | |
| /* 1クリックが面倒くさい… */ | |
| window.addEventListener('load', function() { | |
| var player = document.getElementById('youtube_api_player'); | |
| if (player && player.src.indexOf('autoplay=1') == -1) player.src += '&autoplay=1'; |
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 Instagram auto expand | |
| // @description Instagramのコメントのところ開いとく | |
| // @include http://instagram.com/p/* | |
| // ==/UserScript | |
| (function() { | |
| document.getElementsByTagName('body')[0].className += ' media-open'; | |
| })(); |
NewerOlder