Persistent Highlighter

A watered-down port of Prostetnic Highlighter

Persistent Highlighter là gì?

Persistent Highlighter là một tiện ích mở rộng Chrome được phát triển bởi n8chz, và tính năng chính của nó là "A watered-down port of Prostetnic Highlighter".

Ả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 Persistent Highlighter

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

                        So far,

highlights the text on the page,

stores url and highlight text as key/value pair in local storage,

re-highlights text passages when we re-visit a URL, and

previous highlights are searchable by word.

Doesn't work on Disqus comments, and some other websites.  Working on that...                    

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

Tên Persistent Highlighter Persistent Highlighter
ID njeijipoihldmgnelkdhohadaigobeml
URL Chính Thức https://chromewebstore.google.com/detail/persistent-highlighter/njeijipoihldmgnelkdhohadaigobeml
Mô tả A watered-down port of Prostetnic Highlighter
Kích Thước Tệp 54.08 KB
Số Lần Cài Đặt 620
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2016-09-26
Ngày Phát Hành 2016-09-25
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển n8chz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/n8chz/prostetnic-chrome
URL Trang Trợ Giúp https://github.com/n8chz/prostetnic-chrome/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Persistent Highlighter",
    "version": "0.0.6",
    "description": "A watered-down port of Prostetnic Highlighter",
    "homepage_url": "https:\/\/github.com\/n8chz\/prostetnic-chrome\/tree\/multicolor",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "128": "hilite.png"
    },
    "background": {
        "scripts": [
            "menu.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "hilite.css"
            ],
            "js": [
                "lib.js",
                "rehilite.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "search19.png",
            "38": "search.png"
        },
        "default_title": "Search for words in previous highlights",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}