Skip to content

Instantly share code, notes, and snippets.

@mkizka
Created July 13, 2023 15:44
Show Gist options
  • Save mkizka/44fb04c0ac028deb4f11f8108cf14e8e to your computer and use it in GitHub Desktop.
Save mkizka/44fb04c0ac028deb4f11f8108cf14e8e to your computer and use it in GitHub Desktop.
TweetDeckからIntentに飛ばすやつ
// ==UserScript==
// @name TweetDeckからIntentに飛ばすやつ
// @match https://tweetdeck.twitter.com/
// ==/UserScript==
(function() {
'use strict';
setInterval(()=>{(document.querySelector(".js-send-button")||{}).onclick=()=>window.open("https://twitter.com/intent/tweet?text="+encodeURI(document.querySelector("textarea").value),'_blank','width=800,height=600,left=200,top=200')},100)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment