Selection Menu

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

Co je Selection Menu?

Selection Menu je rozšíření Chrome vyvinuté mad1ost, a jeho hlavní funkcí je „Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Selection Menu

Stáhněte si soubory rozšíření Selection Menu ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Oficiální URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Popis Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Velikost souboru 14.32 KB
Počet instalací 51
Aktuální Verze 3.1.0
Poslední Aktualizace 2024-02-01
Datum Vydání 2020-06-27
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář mad1ost
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/mad1ost/selection-menu
URL Stránky Nápovědy https://github.com/mad1ost/selection-menu/issues
Podporované Jazyky 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"
    ]
}