Select Search
Select -> Search / Translate / Go to link
Co to jest Select Search?
Select Search to rozszerzenie Chrome opracowane przez xuqingfeng, a jego główną funkcją jest „Select -> Search / Translate / Go to link”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Select Search
Pobierz pliki rozszerzeń Select Search 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
In macOS / Windows: ⌘/+ G - search selected text with different search engine( Google, Bing, Sogou ... ) ⌘/ + E - translate selected text ⌘/ + B - jump to selected link Note: shortcuts are customizable in extension's Options page
Podstawowe informacje o rozszerzeniu
Nazwa | Select Search |
ID | hlnpaciomjjnpmbjedfmlnkhogngmleh |
Oficjalny URL | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh |
Opis | Select -> Search / Translate / Go to link |
Rozmiar pliku | 2.21 MB |
Liczba instalacji | 13 |
Aktualna Wersja | 3.2.0 |
Ostatnia Aktualizacja | 2023-11-01 |
Data Publikacji | 2016-06-22 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | xuqingfeng |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/xuqingfeng/Select-Search |
Obsługiwane Języki | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Select Search", "version": "3.2.0", "description": "Select -> Search \/ Translate \/ Go to link", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "options_page": "options.html", "default_locale": "en", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_start", "all_frames": true } ] } |