Select Search

Select -> Search / Translate / Go to link

Cos'è Select Search?

Select Search è un'estensione di Chrome sviluppata da xuqingfeng, e la sua funzione principale è "Select -> Search / Translate / Go to link".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Select Search

Scarica i file di estensione Select Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Select Search Select Search
ID hlnpaciomjjnpmbjedfmlnkhogngmleh
URL Ufficiale https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh
Descrizione Select -> Search / Translate / Go to link
Dimensione del File 2.21 MB
Conteggio Installazioni 13
Versione Corrente 3.2.0
Ultimo Aggiornamento 2023-11-01
Data di Pubblicazione 2016-06-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore xuqingfeng
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/xuqingfeng/Select-Search
Lingue Supportate 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
        }
    ]
}