Twitter Direct Links

Makes links in twitter feed direct.

Twitter Direct Links क्या है?

Twitter Direct Links philatov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes links in twitter feed direct."।

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

screenshot

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

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

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

                        This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one.                    

एक्सटेंशन की मूल जानकारी

नाम Twitter Direct Links Twitter Direct Links
ID chgdginonhphdfgpbhcnhmmglobclkie
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie
विवरण Makes links in twitter feed direct.
फ़ाइल का आकार 45.09 KB
स्थापना संख्या 38
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2014-04-19
प्रकाशन तिथि 2014-04-19
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर philatov
भुगतान के प्रकार free
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.1",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*.twitter.com\/",
        "https:\/\/*.twitter.com\/"
    ],
    "page_action": {
        "default_title": "Twitter Direct Links",
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        }
    }
}