Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Qu'est-ce que Highlighter Tool ?

Highlighter Tool est une extension Chrome développée par n33san, et sa fonction principale est "Keeps a list of words and phrases to Highlight when active".

Télécharger le fichier CRX de l'extension Highlighter Tool

Téléchargez les fichiers d'extension Highlighter Tool 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

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

Informations de Base sur l'Extension

Nom Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
URL Officiel https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
Description Keeps a list of words and phrases to Highlight when active
Taille du Fichier 39.48 KB
Nombre d'Installations 223
Version Actuelle 0.2.1
Dernière Mise à Jour 2017-05-16
Date de Publication 2017-05-16
Évaluation 3.33/5 Total 3 Évaluations
Développeur n33san
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}