Selection Menu

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

Apa itu Selection Menu?

Selection Menu adalah ekstensi Chrome yang dikembangkan oleh mad1ost, dan fitur utamanya adalah "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Selection Menu

Unduh file ekstensi Selection Menu dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
URL Resmi https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Deskripsi Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Ukuran File 14.32 KB
Jumlah Instalasi 51
Versi Saat Ini 3.1.0
Terakhir Diperbarui 2024-02-01
Tanggal Publikasi 2020-06-27
Penilaian 5.00/5 Total 3 Penilaian
Pengembang mad1ost
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/mad1ost/selection-menu
URL Halaman Bantuan https://github.com/mad1ost/selection-menu/issues
Bahasa yang Didukung 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"
    ]
}