Color Changer

Simple tool to insert font tag.

¿Qué es Color Changer?

Color Changer es una extensión de Chrome desarrollada por ryskiwt, y su función principal es "Simple tool to insert font tag.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Color Changer

Descarga archivos de extensión Color Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Color Changer Color Changer
ID bkafkijjlijkgcojllmocbhdklepbncd
URL Oficial https://chrome.google.com/webstore/detail/color-changer/bkafkijjlijkgcojllmocbhdklepbncd
Descripción Simple tool to insert font tag.
Tamaño del Archivo 539 KB
Cantidad de Instalaciones 117
Versión Actual 1.0
Última Actualización 2017-11-23
Fecha de Publicación 2017-11-23
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador ryskiwt
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    }
}