Selection Menu

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

Co to jest Selection Menu?

Selection Menu to rozszerzenie Chrome opracowane przez mad1ost, a jego główną funkcją jest „Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Selection Menu

Pobierz pliki rozszerzeń Selection Menu w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Oficjalny URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Opis Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Rozmiar pliku 14.32 KB
Liczba instalacji 51
Aktualna Wersja 3.1.0
Ostatnia Aktualizacja 2024-02-01
Data Publikacji 2020-06-27
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper mad1ost
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mad1ost/selection-menu
Adres URL Strony Pomocy https://github.com/mad1ost/selection-menu/issues
Obsługiwane Języki 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"
    ]
}