Search On Twitter

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

Qu'est-ce que Search On Twitter ?

Search On Twitter est une extension Chrome développée par http://www.thetravisw.com, et sa fonction principale est "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Search On Twitter

Téléchargez les fichiers d'extension Search On Twitter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
URL Officiel https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
Description Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Taille du Fichier 9.53 KB
Nombre d'Installations 465
Version Actuelle 1.0
Dernière Mise à Jour 2014-09-28
Date de Publication 2014-09-28
Évaluation 3.71/5 Total 7 Évaluations
Développeur http://www.thetravisw.com
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}