Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Highlighter Tool là gì?

Highlighter Tool là một tiện ích mở rộng Chrome được phát triển bởi n33san, và tính năng chính của nó là "Keeps a list of words and phrases to Highlight when active".

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

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

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

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

Tên Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
URL Chính Thức https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
Mô tả Keeps a list of words and phrases to Highlight when active
Kích Thước Tệp 39.48 KB
Số Lần Cài Đặt 223
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2017-05-16
Ngày Phát Hành 2017-05-16
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển n33san
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}