Selection Menu

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

Vad är Selection Menu?

Selection Menu är en Chrome-tillägg utvecklad av mad1ost, och dess huvudfunktion är "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Selection Menu-förlängningens CRX-fil

Ladda ner Selection Menu-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Officiell webbadress https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Beskrivning Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Filstorlek 14.32 KB
Antal Installationer 51
Aktuell Version 3.1.0
Senast Uppdaterad 2024-02-01
Publiceringsdatum 2020-06-27
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare mad1ost
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mad1ost/selection-menu
Hjälpsida URL https://github.com/mad1ost/selection-menu/issues
Stödda Språk 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"
    ]
}