Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

Cos'è Selection Menu?

Selection Menu è un'estensione di Chrome sviluppata da mad1ost, e la sua funzione principale è "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Selection Menu

Scarica i file di estensione Selection Menu 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

                        Select the text and click on one of the buttons in the pop-up menu (copy or search in Google (or other search engines)). See extension preferences to choose your own search engine.                    

Informazioni di Base sull'Estensione

Nome Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
URL Ufficiale https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Descrizione Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Dimensione del File 14.32 KB
Conteggio Installazioni 51
Versione Corrente 3.1.0
Ultimo Aggiornamento 2024-02-01
Data di Pubblicazione 2020-06-27
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore mad1ost
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mad1ost/selection-menu
URL della Pagina di Aiuto https://github.com/mad1ost/selection-menu/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Menu",
    "version": "3.1.0",
    "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
    "homepage_url": "https:\/\/github.com\/mad1ost\/selection-menu",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "selection-menu.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "selection-menu-sub.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}