Tweet

  • /*
     * @title Tweet
     * @description 閲覧中のページの URL と、選択文字列またはタイトルとともに Tweet 作成ページへ遷移します。
     * @include http://*
     * @license MIT License
     * @javascript_url
     */
    
    (function () {
        var link, url, message;
        link = document.querySelector("link[rel=canonical]");
        url = link && link.getAttribute("href") || location.href;
        message = '"' + (window.getSelection().toString() || document.title) + '"';
        location.href = 'https://twitter.com/intent/tweet?url='+ encodeURIComponent(url) + "&text=" + encodeURIComponent(message);
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/04/19 13:22:18 - 2018-04-19