Color Changer

Simple tool to insert font tag.

Color Changer là gì?

Color Changer là một tiện ích mở rộng Chrome được phát triển bởi ryskiwt, và tính năng chính của nó là "Simple tool to insert font tag.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Color Changer

Tải xuống các tệp mở rộng Color Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Color Changer Color Changer
ID bkafkijjlijkgcojllmocbhdklepbncd
URL Chính Thức https://chrome.google.com/webstore/detail/color-changer/bkafkijjlijkgcojllmocbhdklepbncd
Mô tả Simple tool to insert font tag.
Kích Thước Tệp 539 KB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-11-23
Ngày Phát Hành 2017-11-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ryskiwt
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}