Highlight Keywords

Highlight keywords on webpage that you visited after searching for a keyword on a search engine.

Highlight Keywords là gì?

Highlight Keywords là một tiện ích mở rộng Chrome được phát triển bởi http://sites.google.com/site/extensionshub, và tính năng chính của nó là "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.".

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

screenshot
screenshot

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

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

                        Supported search engines are
✓ Google
✓ Yahoo
✓ Bing
✓ Yandex
✓ Baidu

How to On/Off the highlighter?
Click extension icon to on/off the highlighter.

How it works?

You search for a keyword on a search engine.
Then visit a webpage from returned results.
Keywords will be highlighted on that page.
To on/off the highlighter, just click extension icon.

What you will get with Highlight Keywords?
✓ A great highlighting extension.
✓ New tab page which includes links to popular sites.                    

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

Tên Highlight Keywords Highlight Keywords
ID ifboknkcilomhlninjdnphlphadpcjli
URL Chính Thức https://chrome.google.com/webstore/detail/highlight-keywords/ifboknkcilomhlninjdnphlphadpcjli
Mô tả Highlight keywords on webpage that you visited after searching for a keyword on a search engine.
Kích Thước Tệp 30.43 KB
Số Lần Cài Đặt 355
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-12-20
Ngày Phát Hành 2017-12-20
Đánh Giá 3.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển http://sites.google.com/site/extensionshub
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://freepicturesolutions.com/privacy_policy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Keywords",
    "default_locale": "en",
    "description": "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "style.css"
    ]
}