TweetThis

Tweets the current URL

TweetThis क्या है?

TweetThis Jarryd Lee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tweets the current URL"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TweetThis एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}