Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Cos'è Search On Twitter?
Search On Twitter è un'estensione di Chrome sviluppata da http://www.thetravisw.com, e la sua funzione principale è "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search On Twitter
Scarica i file di estensione Search On Twitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
URL Ufficiale | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Descrizione | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
Dimensione del File | 9.53 KB |
Conteggio Installazioni | 465 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-09-28 |
Data di Pubblicazione | 2014-09-28 |
Valutazione | 3.71/5 Totale 7 Valutazioni |
Sviluppatore | http://www.thetravisw.com |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |