Selection Menu

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

Hvad er Selection Menu?

Selection Menu er en Chrome-udvidelse udviklet af mad1ost, og dens hovedfunktion er "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Selection Menu-udvidelses-CRX-fil

Download Selection Menu-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Officiel URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Beskrivelse Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Filstørrelse 14.32 KB
Antal Installationer 51
Nuværende Version 3.1.0
Senest Opdateret 2024-02-01
Udgivelsesdato 2020-06-27
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler mad1ost
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/mad1ost/selection-menu
Hjælpeside-URL https://github.com/mad1ost/selection-menu/issues
Understøttede Sprog 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"
    ]
}