Select Search
Select -> Search / Translate / Go to link
Qu'est-ce que Select Search ?
Select Search est une extension Chrome développée par xuqingfeng, et sa fonction principale est "Select -> Search / Translate / Go to link".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Select Search
Téléchargez les fichiers d'extension Select Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Select Search |
ID | hlnpaciomjjnpmbjedfmlnkhogngmleh |
URL Officiel | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh |
Description | Select -> Search / Translate / Go to link |
Taille du Fichier | 2.21 MB |
Nombre d'Installations | 13 |
Version Actuelle | 3.2.0 |
Dernière Mise à Jour | 2023-11-01 |
Date de Publication | 2016-06-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | xuqingfeng |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/xuqingfeng/Select-Search |
Langues Prises en Charge | 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 } ] } |