Last active
June 21, 2019 10:26
-
-
Save mika-f/8ec8e0c181fc85afbfde2d051383120b to your computer and use it in GitHub Desktop.
みてるなうブックマークレット
This file contains 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:( | |
function() { | |
const host = "https://twitter.com/intent/tweet"; | |
const url = location.href; | |
const title = document.title; | |
const text = `${title} ${url} #miteru`; | |
window.open(`${host}?text=${encodeURIComponent(text)}`, null, 'width=530,height=300,menubar=no,toolbar=no,scrollbars=yes'); | |
} | |
)() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment