Multi Highlight

highlight multiple text on web pages.

Qu'est-ce que Multi Highlight ?

Multi Highlight est une extension Chrome développée par chengjie.lv, et sa fonction principale est "highlight multiple text on web pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Multi Highlight

Téléchargez les fichiers d'extension Multi Highlight au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Multi Highlight Multi Highlight
ID mmkdibnjnmdebbhnddmpknnedpcokonh
URL Officiel https://chromewebstore.google.com/detail/multi-highlight/mmkdibnjnmdebbhnddmpknnedpcokonh
Description highlight multiple text on web pages.
Taille du Fichier 60.59 KB
Nombre d'Installations 15,179
Version Actuelle 0.1.1
Dernière Mise à Jour 2019-05-23
Date de Publication 2019-05-22
Évaluation 3.29/5 Total 17 Évaluations
Développeur chengjie.lv
Type de Paiement free
Langues Prises en Charge 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"
    ]
}