TweetThis

Tweets the current URL

Apa itu TweetThis?

TweetThis adalah ekstensi Chrome yang dikembangkan oleh Jarryd Lee, dan fitur utamanya adalah "Tweets the current URL".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi TweetThis

Unduh file ekstensi TweetThis dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
URL Resmi https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Deskripsi Tweets the current URL
Ukuran File 81.59 KB
Jumlah Instalasi 47
Versi Saat Ini 2.1
Terakhir Diperbarui 2014-02-13
Tanggal Publikasi 2014-02-13
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Jarryd Lee
Tipe Pembayaran free
Bahasa yang Didukung 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
}