Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Selection Highlighter là gì?

Selection Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Tao, và tính năng chính của nó là "Automatically highlight all occurrences of current selection on current page.".

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

screenshot
screenshot
screenshot

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

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

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

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

Tên Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
URL Chính Thức https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Mô tả Automatically highlight all occurrences of current selection on current page.
Kích Thước Tệp 96.84 KB
Số Lần Cài Đặt 112
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2020-07-17
Ngày Phát Hành 2020-06-03
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Tao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/taoalpha/selection-highlighter
URL Trang Trợ Giúp https://github.com/taoalpha/selection-highlighter
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}