Select Search
Select -> Search / Translate / Go to link
Wat is Select Search?
Select Search is een Chrome-extensie ontwikkeld door xuqingfeng, en de belangrijkste functie is "Select -> Search / Translate / Go to link".
Extensie Screenshots
Download het CRX-bestand van de extensie Select Search
Download Select Search-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
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 Basisinformatie over de Extensie
| Naam | |
| ID | hlnpaciomjjnpmbjedfmlnkhogngmleh |
| Officiële URL | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh |
| Beschrijving | Select -> Search / Translate / Go to link |
| Bestandsgrootte | 2.21 MB |
| Aantal Installaties | 13 |
| Huidige Versie | 3.2.0 |
| Laatst Bijgewerkt | 2023-11-01 |
| Publicatiedatum | 2016-06-22 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | xuqingfeng |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/xuqingfeng/Select-Search |
| Ondersteunde Talen | 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
}
]
} | |