Last active
March 15, 2019 05:24
-
-
Save mimonelu/58870dac3ccb49548566b61d4fea98d2 to your computer and use it in GitHub Desktop.
🐦ツイート検索ブックマークレット
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
javascript: (() => { const q = prompt('検索ワードを入力してください。'); if (q) { const a = document.createElement('a'); a.href = `https://twitter.com/search?src=typd&q=${encodeURIComponent(q)}%20from%3Amimonelu&f=live`; a.target = '_blank'; a.click(); } })(); void 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
任意のワードでツイートを検索するブックマークレット。
最後の
mimonelu
を Twitter の ID に変えて使ってください。window.open()
がセキュリティ上の理由からブックマークレットで使えなくなったため、回避策を適用した