Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

Selection Highlighter là gì?

Selection Highlighter là một tiện ích mở rộng Chrome được phát triển bởi https://neaumusic.com, và tính năng chính của nó là "Highlight occurrences of selected text, with or without a keypress.".

Ả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

                        For code inspection and document analysis: search for and find keywords.

- No need to press CMD+F
- Maintains current selection
- Open source and configurable options (JavaScript)
- Ensure a "gate" key is pressed
- Match whole word and/or case-insensitive
- Blacklist bad hosts and ancestor HTML nodes

Highlight works on all sites, including GitHub, StackOverflow, HackerNews, Reddit, etc.

See all code involved:
1. Dev Console -> Sources -> Content Scripts -> Selection Highlighter
2. chrome://extensions -> Selection Highlighter -> Options -> Dev Console -> Sources

https://github.com/neaumusic/selection-highlighter                    

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

Tên Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL Chính Thức https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Mô tả Highlight occurrences of selected text, with or without a keypress.
Kích Thước Tệp 470 KB
Số Lần Cài Đặt 8,418
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2024-01-14
Ngày Phát Hành 2020-06-07
Đánh Giá 4.59/5 Tổng số 78 Đánh Giá
Nhà Phát Triển https://neaumusic.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/neaumusic/selection-highlighter
URL Trang Trợ Giúp https://github.com/neaumusic/selection-highlighter/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Highlighter",
    "version": "3.1.0",
    "description": "Highlight occurrences of selected text, with or without a keypress.",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content_script\/main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Selection Highlighter",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "1024": "images\/icon.png"
    },
    "permissions": [
        "storage"
    ]
}