Search On Twitter

Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu

Search On Twitter क्या है?

Search On Twitter http://www.thetravisw.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu"।

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

screenshot
screenshot

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

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

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

                        Search On Twitter adds to the Right-Click context menu.  

If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented.

Source Code - https://github.com/travis-w/Search-On-Twitter                    

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

नाम Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
आधिकारिक URL https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
विवरण Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
फ़ाइल का आकार 9.53 KB
स्थापना संख्या 465
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-09-28
प्रकाशन तिथि 2014-09-28
रेटिंग 3.71/5 कुल 7 रेटिंग्स
डेवलपर http://www.thetravisw.com
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search On Twitter",
    "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ]
}