Highlit

Highlights all occurrences of the currently selected word on page.

Highlit là gì?

Highlit là một tiện ích mở rộng Chrome được phát triển bởi Nikola Toshev, và tính năng chính của nó là "Highlights all occurrences of the currently selected word on page.".

Ả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 Highlit

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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

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

Tên Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Chính Thức https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Mô tả Highlights all occurrences of the currently selected word on page.
Kích Thước Tệp 15.58 KB
Số Lần Cài Đặt 952
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 3.19/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Nikola Toshev
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": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}