Highlighter

Highlights a user-defined list of keywords on all web pages.

Highlighter là gì?

Highlighter là một tiện ích mở rộng Chrome được phát triển bởi gingerbeardman, và tính năng chính của nó là "Highlights a user-defined list of keywords on all web pages.".

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

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

                        Highlight a user defined list of keywords on webpages you visit. Supports groups of words that will highlight in the same colour, and lots more!

- keywords support plain text and regular expressions!
- easy keyword entry
- with paste support
- drag and drop reordering
- automatic colouring
- instant update on the page
- page action
- options page
- highlight toggle
- works with dynamic content
- context menu
- fast!

Open source:                    

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

Tên Highlighter Highlighter
ID oibnefncafkleabfjlfheddocehlinga
URL Chính Thức https://chrome.google.com/webstore/detail/highlighter/oibnefncafkleabfjlfheddocehlinga
Mô tả Highlights a user-defined list of keywords on all web pages.
Kích Thước Tệp 129 KB
Số Lần Cài Đặt 519
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-01-21
Ngày Phát Hành 2014-01-21
Đánh Giá 3.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển gingerbeardman
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter",
    "description": "Highlights a user-defined list of keywords on all web pages.",
    "version": "1.0.0",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "19": "img\/icon19.png",
            "38": "img\/icon38.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_title": "Highlighter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "css\/highlight.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/jquery.highlightregex.min.js",
                "js\/highlight.regex.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 2
}