公式クライアントで Tweet

  • /*
     * @title 公式クライアントで Tweet
     * @description 閲覧中のページの URL と、選択文字列またはタイトルとともに OSX / iOS の Twitter 公式クライアントで Tweet します。
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    (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 = 'tweetie://post?message=' + encodeURIComponent('/ "' + message + '" ' + location.href);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/10/01 16:21:56 - 2014-10-01