Skip to content

Instantly share code, notes, and snippets.

@mika-f
Last active June 21, 2019 10:26
Show Gist options
  • Save mika-f/8ec8e0c181fc85afbfde2d051383120b to your computer and use it in GitHub Desktop.
Save mika-f/8ec8e0c181fc85afbfde2d051383120b to your computer and use it in GitHub Desktop.
みてるなうブックマークレット
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