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

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

확장 프로그램 사용 설명서

                        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
}