Highlight tool

Highlight tool with jumps and Regex

Highlight tool là gì?

Highlight tool là một tiện ích mở rộng Chrome được phát triển bởi Utopia, và tính năng chính của nó là "Highlight tool with jumps and Regex".

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

screenshot

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

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

                        Quickly highlight text in webpages using regular text or RegExp.

Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.                    

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

Tên Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
URL Chính Thức https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
Mô tả Highlight tool with jumps and Regex
Kích Thước Tệp 209 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2017-02-14
Ngày Phát Hành 2017-02-14
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Utopia
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.6",
    "name": "Highlight tool",
    "description": "Highlight tool with jumps and Regex",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}