Selection Popup

Perform customizable actions (Search, Copy etc) on selected text.

Selection Popup là gì?

Selection Popup là một tiện ích mở rộng Chrome được phát triển bởi mubaidr, và tính năng chính của nó là "Perform customizable actions (Search, Copy etc) on selected text.".

Ả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 Popup

Tải xuống các tệp mở rộng Selection Popup 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

                        Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. 

You can manage search engines in options, their order of appearance, names etc

Enable or disable available commands in the options. 

Or even use your styles using CSS to customize the look of popup.                    

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

Tên Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
URL Chính Thức https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
Mô tả Perform customizable actions (Search, Copy etc) on selected text.
Kích Thước Tệp 62.59 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.9.7
Cập Nhật Lần Cuối 2020-02-11
Ngày Phát Hành 2020-02-11
Đánh Giá 4.56/5 Tổng số 45 Đánh Giá
Nhà Phát Triển mubaidr
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/mubaidr/selection-popup/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                ".\/contentScript.css"
            ],
            "js": [
                ".\/contentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Perform customizable actions (Search, Copy etc) on selected text.",
    "icons": {
        "16": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Selection Popup",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "version": "1.9.7"
}