Selection Menu

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

Selection Menuคืออะไร?

Selection Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mad1ost และคุณลักษณะหลักของมันคือ "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Selection Menu

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}