Search On Twitter

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

Co je Search On Twitter?

Search On Twitter je rozšíření Chrome vyvinuté http://www.thetravisw.com, a jeho hlavní funkcí je „Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Search On Twitter

Stáhněte si soubory rozšíření Search On Twitter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
Oficiální URL https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
Popis Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Velikost souboru 9.53 KB
Počet instalací 465
Aktuální Verze 1.0
Poslední Aktualizace 2014-09-28
Datum Vydání 2014-09-28
Hodnocení 3.71/5 Celkem 7 Hodnocení
Vývojář http://www.thetravisw.com
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}