Skip to content

Instantly share code, notes, and snippets.

@rodeomachine
Last active August 29, 2015 14:01
Show Gist options
  • Save rodeomachine/5df94d909cbc2f47f4a2 to your computer and use it in GitHub Desktop.
Save rodeomachine/5df94d909cbc2f47f4a2 to your computer and use it in GitHub Desktop.
TLの画像を開いてみたらyfrogだった時に勝手にContinue to the mediaするuser.js。
// ==UserScript==
// @name yfrogskip
// @namespace http://rodeo-machine.com/
// @version 0.1
// @description TLの画像を開いてみたらyfrogだった時に勝手にContinue to the mediaするやつ。
// @match http://twitter.yfrog.com/*
// @copyright 2014+, @Natsu
// ==/UserScript==
yfrogskip = function() {
return setTimeout(function() {
if (location.href.match(/twitter.yfrog.com\/[a-zA-Z0-9]{1,7}$/)) {
location.href = location.href + '?sa=0';
}
return yfrogskip();
}, 500);
};
yfrogskip();
@rodeomachine
Copy link
Author

Google Chrome + Tampermonkey でのみ動作確認をしました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment