Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Wat is Search On Twitter?
Search On Twitter is een Chrome-extensie ontwikkeld door http://www.thetravisw.com, en de belangrijkste functie is "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
Extensie Screenshots
Download het CRX-bestand van de extensie Search On Twitter
Download Search On Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
Officiële URL | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Beschrijving | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
Bestandsgrootte | 9.53 KB |
Aantal Installaties | 465 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-09-28 |
Publicatiedatum | 2014-09-28 |
Beoordeling | 3.71/5 Totaal 7 Beoordelingen |
Ontwikkelaar | http://www.thetravisw.com |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |