Color Changer

Simple tool to insert font tag.

Qu'est-ce que Color Changer ?

Color Changer est une extension Chrome développée par ryskiwt, et sa fonction principale est "Simple tool to insert font tag.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Color Changer

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

                        Simple tool to insert font tags to change font-color.

Usage
--------------------

1. Click color-changer browser button, then badge `on` will appear on it.
2. Select target charactors.
2. Press `Alt+R` / `Alt+B`, then html font-tag will be inserted before & after the terget.

Sample:
beforetargetafter
-> beforetargetafter                    

Informations de Base sur l'Extension

Nom Color Changer Color Changer
ID bkafkijjlijkgcojllmocbhdklepbncd
URL Officiel https://chrome.google.com/webstore/detail/color-changer/bkafkijjlijkgcojllmocbhdklepbncd
Description Simple tool to insert font tag.
Taille du Fichier 539 KB
Nombre d'Installations 117
Version Actuelle 1.0
Dernière Mise à Jour 2017-11-23
Date de Publication 2017-11-23
Évaluation 5.00/5 Total 1 Évaluations
Développeur ryskiwt
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Changer",
    "short_name": "color-changer",
    "version": "1.0",
    "description": "Simple tool to insert font tag.",
    "author": "ryskiwt",
    "permissions": [
        "tabs",
        ""
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon32.png"
        },
        "default_title": "color-changer"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/content-script.js"
    ],
    "commands": {
        "red": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Change to red"
        },
        "blue": {
            "suggested_key": {
                "default": "Alt+B"
            },
            "description": "Change to blue"
        }
    }
}