Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Co to jest Search On Twitter?
Search On Twitter to rozszerzenie Chrome opracowane przez http://www.thetravisw.com, a jego główną funkcją jest „Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Search On Twitter
Pobierz pliki rozszerzeń Search On Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
Oficjalny URL | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Opis | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
Rozmiar pliku | 9.53 KB |
Liczba instalacji | 465 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-09-28 |
Data Publikacji | 2014-09-28 |
Ocena | 3.71/5 Łącznie 7 Oceny |
Deweloper | http://www.thetravisw.com |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |