Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Vad är Search On Twitter?
Search On Twitter är en Chrome-tillägg utvecklad av http://www.thetravisw.com, och dess huvudfunktion är "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
Tilläggsskärmbilder
Ladda ner Search On Twitter-förlängningens CRX-fil
Ladda ner Search On Twitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
Officiell webbadress | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Beskrivning | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
Filstorlek | 9.53 KB |
Antal Installationer | 465 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2014-09-28 |
Publiceringsdatum | 2014-09-28 |
Betyg | 3.71/5 Totalt 7 Betyg |
Utvecklare | http://www.thetravisw.com |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |