High Contrast Twitch.tv Chat Names

selectively turn low-contrast Twitch chat names black

High Contrast Twitch.tv Chat Names란 무엇입니까?

High Contrast Twitch.tv Chat Names은(는) rsheldiii에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "selectively turn low-contrast Twitch chat names black"입니다.

High Contrast Twitch.tv Chat Names 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        changes all Twitch chat names and messages to black if their contrast ratio is under a certain threshold.

contrast ratio and luminosity definitions taken from the W3 specifications and recommendations on high contrast, legible text.

currently this application is in alpha. known issues:

* changing names is done with a setInterval, as attaching events to the DOM through chrome extensions is difficult. this is resource intensive (much in the same way that throwing away the last funyun is wasteful) but may be the best route, as
* posting in chat will clear all changed names. All names lose their class definitions, meaning the chat may regen when you post

proposed updates:
* instead of black, change names to the highest contrast color opposing the background color (in the case of better twitch tv and any other plugin that could change the background color). This has already been started, as the background color used to compare against name color is dynamic
* maybe find a better legibility rating algorithm, as while the W3 recommendation is a standard, it kinda sucks                    

확장 프로그램 기본 정보

이름 High Contrast Twitch.tv Chat Names High Contrast Twitch.tv Chat Names
ID dfclfmljnijcbpacbehbbdohndjgmkjb
공식 URL https://chrome.google.com/webstore/detail/high-contrast-twitchtv-ch/dfclfmljnijcbpacbehbbdohndjgmkjb
설명 selectively turn low-contrast Twitch chat names black
파일 크기 6.61 KB
설치 횟수 63
현재 버전 0.0.0.1
최근 업데이트 2014-06-19
출시 날짜 2014-06-19
평점 4.67/5 총 3 개의 평점
개발자 rsheldiii
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "High Contrast Twitch.tv Chat Names",
    "description": "selectively turn low-contrast Twitch chat names black",
    "version": "0.0.0.1",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "manifest_version": 2
}