Selection Menu

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

Wat is Selection Menu?

Selection Menu is een Chrome-extensie ontwikkeld door mad1ost, en de belangrijkste functie is "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Selection Menu

Download Selection Menu-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

                        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.                    

Basisinformatie over de Extensie

Naam Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Officiële URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Beschrijving Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Bestandsgrootte 14.32 KB
Aantal Installaties 51
Huidige Versie 3.1.0
Laatst Bijgewerkt 2024-02-01
Publicatiedatum 2020-06-27
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar mad1ost
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mad1ost/selection-menu
Help Pagina-URL https://github.com/mad1ost/selection-menu/issues
Ondersteunde Talen 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"
    ]
}