Selection Menu

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

什麼是Selection Menu?

Selection Menu是由mad1ost開發的Chrome擴展程式,該擴展的主要功能是“Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)”。

擴展截圖

screenshot
screenshot

下載Selection Menu擴展crx文件

下載Selection Menu擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
官方網址 https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
簡介 Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
檔案大小 14.32 KB
安裝次數 51
目前版本 3.1.0
更新時間 2024-02-01
上架時間 2020-06-27
評分 5.00/5 共 3 次評分
開發者 mad1ost
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mad1ost/selection-menu
說明頁面URL https://github.com/mad1ost/selection-menu/issues
支援的語言 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"
    ]
}