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
公式URL 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
Eメール [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"
    ]
}