Automatic Enjin Chat Text Color

Automatically colors your text when using an Enjin chat room!

什么是Automatic Enjin Chat Text Color?

Automatic Enjin Chat Text Color是由Louis Fortier开发的Chrome扩展程序,该扩展的主要功能是“Automatically colors your text when using an Enjin chat room!”。

下载Automatic Enjin Chat Text Color扩展crx文件

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

扩展使用说明

                        The Automatic Enjin Chat Text Colorer is a small and simple tool to enhance your chat roleplaying experience. Basically, it lets you assign a color to your text which will automatically be sent with every message so you don't have to set your color code every time you type a line!

Now supports Enjin's Chat 2.0! Visit the website for more details.

How does it work?

- Install the chrome extension.
- Load up a page with an Enjin chat room. A color picker icon should appear at the right of your address bar.
- Click the icon, enter the desired color (in any BBCode compliant form like hex code or simple words like "red", "blue") and hit Enter.
- The color of the text you type should now reflect the color that will be sent with your messages.

- To change you color, simply click the icon again and enter a new value.
- Refreshing the page will bring everything back to normal.

General disclaimer

- This is an experimental extension. Use at your own risk.
- I am no javascript and extension coding master, so the code is probably not optimal. The extension itself is pretty light and straightforward, but should you encounter performance losses, please tell me.
- Please be mindful of others and only use chat colors when really necessary.                    

扩展基本信息

名称 Automatic Enjin Chat Text Color Automatic Enjin Chat Text Color
ID jnndocaljppfiomkjdlgmiejfmppbiha
官方URL https://chrome.google.com/webstore/detail/automatic-enjin-chat-text/jnndocaljppfiomkjdlgmiejfmppbiha
简介 Automatically colors your text when using an Enjin chat room!
文件大小 39.78 KB
安装次数 22
当前版本 0.51
更新时间 2014-07-14
上架时间 2014-07-14
评分 5.00/5 共5次评分
开发者 Louis Fortier
付费类型 free
扩展官网 http://louisfortier.ca/chat-color/
帮助页面URL http://louisfortier.ca/chat-color/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Automatic Enjin Chat Text Color",
    "version": "0.51",
    "description": "Automatically colors your text when using an Enjin chat room!",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Set a color for your Enjin chat text!",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "header_functions.js"
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}