Color Changer

Simple tool to insert font tag.

什么是Color Changer?

Color Changer是由ryskiwt开发的Chrome扩展程序,该扩展的主要功能是“Simple tool to insert font tag.”。

扩展截图

screenshot
screenshot

下载Color Changer扩展crx文件

下载Color Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Color Changer Color Changer
ID bkafkijjlijkgcojllmocbhdklepbncd
官方URL https://chrome.google.com/webstore/detail/color-changer/bkafkijjlijkgcojllmocbhdklepbncd
简介 Simple tool to insert font tag.
文件大小 539 KB
安装次数 117
当前版本 1.0
更新时间 2017-11-23
上架时间 2017-11-23
评分 5.00/5 共1次评分
开发者 ryskiwt
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    }
}