TweetThis

Tweets the current URL

TweetThisとは何ですか?

TweetThisはJarryd Leeによって開発されたChromeの拡張機能で、その主な機能は「Tweets the current URL」です。

拡張機能のスクリーンショット

screenshot

TweetThis拡張機能のCRXファイルをダウンロード

TweetThis拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.                    

拡張機能の基本情報

名前 TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
公式URL https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
説明 Tweets the current URL
ファイルサイズ 81.59 KB
インストール数 47
現在のバージョン 2.1
最終更新日 2014-02-13
公開日 2014-02-13
評価 5.00/5 合計 1 レビュー
開発者 Jarryd Lee
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TweetThis",
    "short_name": "TweetThis",
    "author": "Jarryd Lee",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "description": "Tweets the current URL",
    "version": "2.1",
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "permissions": [
            "tabs",
            "contextMenus",
            "http:\/\/*\/*",
            "https:\/\/*\/*",
            "http:\/\/api.bit.ly\/*"
        ]
    },
    "web_accessible_resources": [
        "jquery-1.10.1.min.map"
    ],
    "manifest_version": 2
}