Created
September 2, 2014 03:16
-
-
Save Qofar/f91cfccccd8d347361dd to your computer and use it in GitHub Desktop.
Tweetdeckの検索APIをsearch/universal.jsonに強制切り替えする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 Tweetdeck enable UNIVERSAL/SEARCH | |
// @description search/tweets.json => search/universal.json | |
// @include https://tweetdeck.twitter.com/ | |
// @version 1.0.0 | |
// @license MIT License | |
// ==/UserScript== | |
(function(){ | |
function source() { | |
if(!TD.config.decider_overlay) TD.config.decider_overlay = {}; | |
TD.config.decider_overlay["universal_search_timelines"] = true; | |
} | |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.innerHTML = '(' + source.toString() + ')();'; | |
document.body.appendChild(script); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment