TweetThis

Tweets the current URL

TweetThis là gì?

TweetThis là một tiện ích mở rộng Chrome được phát triển bởi Jarryd Lee, và tính năng chính của nó là "Tweets the current URL".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TweetThis

Tải xuống các tệp mở rộng TweetThis dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
URL Chính Thức https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Mô tả Tweets the current URL
Kích Thước Tệp 81.59 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2014-02-13
Ngày Phát Hành 2014-02-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Jarryd Lee
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}