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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}