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
官方網址 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
}