Simple Word Highlighter

This extension highlights words on a webpage as specified by the user

Qu'est-ce que Simple Word Highlighter ?

Simple Word Highlighter est une extension Chrome développée par berdinemail, et sa fonction principale est "This extension highlights words on a webpage as specified by the user".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Simple Word Highlighter

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

                        This extension allows you highlight words on any website.

You can specify which websites to run on

You can specify which words to highlight per page

You can specify which color you would like to highlight with                    

Informations de Base sur l'Extension

Nom Simple Word Highlighter Simple Word Highlighter
ID ojmcbcojgmdcdmnidlgjjajoniomibdj
URL Officiel https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj
Description This extension highlights words on a webpage as specified by the user
Taille du Fichier 103 KB
Nombre d'Installations 926
Version Actuelle 1.0
Dernière Mise à Jour 2014-10-24
Date de Publication 2014-10-24
Évaluation 3.89/5 Total 9 Évaluations
Développeur berdinemail
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Word Highlighter",
    "description": "This extension highlights words on a webpage as specified by the user",
    "version": "1.0",
    "background": {
        "scripts": [
            "Configure.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "ModifyPage.js"
            ],
            "css": [
                "Highlight.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}