TweetThis

Tweets the current URL

TweetThisคืออะไร?

TweetThis เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jarryd Lee และคุณลักษณะหลักของมันคือ "Tweets the current URL"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TweetThis

ดาวน์โหลดไฟล์ส่วนขยาย 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
}