Search On Twitter

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

Hvad er Search On Twitter?

Search On Twitter er en Chrome-udvidelse udviklet af http://www.thetravisw.com, og dens hovedfunktion er "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Search On Twitter-udvidelses-CRX-fil

Download Search On Twitter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
Officiel URL https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
Beskrivelse Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Filstørrelse 9.53 KB
Antal Installationer 465
Nuværende Version 1.0
Senest Opdateret 2014-09-28
Udgivelsesdato 2014-09-28
Bedømmelse 3.71/5 Samlet 7 Bedømmelser
Udvikler http://www.thetravisw.com
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}