Selection Menu

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

Selection Menu là gì?

Selection Menu là một tiện ích mở rộng Chrome được phát triển bởi mad1ost, và tính năng chính của nó là "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Selection Menu

Tải xuống các tệp mở rộng Selection Menu dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
URL Chính Thức https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Mô tả Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Kích Thước Tệp 14.32 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2024-02-01
Ngày Phát Hành 2020-06-27
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển mad1ost
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mad1ost/selection-menu
URL Trang Trợ Giúp https://github.com/mad1ost/selection-menu/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}