Selection Menu

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

What is Selection Menu?

Selection Menu is a Chrome extension developed by mad1ost, and its main feature is "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Extension Screenshots

screenshot
screenshot

Download Selection Menu Extension CRX File

Download Selection Menu extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Official URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Description Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
File Size 14.32 KB
Installation Count 51
Current Version 3.1.0
Last Updated 2024-02-01
Publish Date 2020-06-27
Rating 5.00/5 Total 3 Ratings
Developer mad1ost
Email [email protected]
Payment Type free
Extension Website https://github.com/mad1ost/selection-menu
Help Page URL https://github.com/mad1ost/selection-menu/issues
Supported Languages 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"
    ]
}