Extract Twitter Username

Extracts Twitter username if found on the page

Extract Twitter Username क्या है?

Extract Twitter Username jakub.chodounsky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts Twitter username if found on the page"।

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

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

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

                        Extracts Twitter usernames from a webpage and copies the first one to the clipboard.                    

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

नाम Extract Twitter Username Extract Twitter Username
ID ijecnijneneapbdhocmjbhnamicoonai
आधिकारिक URL https://chrome.google.com/webstore/detail/extract-twitter-username/ijecnijneneapbdhocmjbhnamicoonai
विवरण Extracts Twitter username if found on the page
फ़ाइल का आकार 39.02 KB
स्थापना संख्या 45
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2016-11-10
प्रकाशन तिथि 2016-11-10
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर jakub.chodounsky
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jakubgarfield/extract-twitter-username-chrome
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extract Twitter Username",
    "description": "Extracts Twitter username if found on the page",
    "version": "0.1.2",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Extract Twitter username",
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}