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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rsheldiii และคุณลักษณะหลักของมันคือ "selectively turn low-contrast Twitch chat names black"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย High Contrast Twitch.tv Chat Names
ดาวน์โหลดไฟล์ส่วนขยาย High Contrast Twitch.tv Chat Names ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 } |