Multi Highlight

highlight multiple text on web pages.

What is Multi Highlight?

Multi Highlight is a Chrome extension developed by chengjie.lv, and its main feature is "highlight multiple text on web pages.".

Extension Screenshots

screenshot

Download Multi Highlight Extension CRX File

Download Multi Highlight extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        multi highlight text in web page, using space to seperate.
even highlight one character!                    

Extension Basic Information

Name Multi Highlight Multi Highlight
ID mmkdibnjnmdebbhnddmpknnedpcokonh
Official URL https://chromewebstore.google.com/detail/multi-highlight/mmkdibnjnmdebbhnddmpknnedpcokonh
Description highlight multiple text on web pages.
File Size 60.59 KB
Installation Count 15,179
Current Version 0.1.1
Last Updated 2019-05-23
Publish Date 2019-05-22
Rating 3.29/5 Total 17 Ratings
Developer chengjie.lv
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multi Highlight",
    "version": "0.1.1",
    "description": "highlight multiple text on web pages.",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "350": "img\/icon350.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "jquery.highlight.js",
                "app.js"
            ],
            "css": [
                "highlight.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "jquery.highlight.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            },
            "description": "Activate the extension"
        }
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}