Twitter Blues
This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
Twitter Bluesคืออะไร?
Twitter Blues เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pheonise และคุณลักษณะหลักของมันคือ "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Blues
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Blues ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quick 'n' simple extension to change Twitter's new garish white background to something a little easier on the eyes. Now includes custom color picker! Kudos to @tricepidemic for huge help! @Pheonise
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitter Blues |
ID | gkfadfcgdlbpkepcjdcicjjmphgehehk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk |
คำอธิบาย | This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker! |
ขนาดไฟล์ | 9.26 KB |
จำนวนการติดตั้ง | 23 |
เวอร์ชันปัจจุบัน | 0.2.3 |
อัปเดตครั้งล่าสุด | 2016-06-20 |
วันที่เผยแพร่ | 2016-06-20 |
คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Pheonise |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Blues", "description": "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!", "version": "0.2.3", "icons": { "48": "icon48.png" }, "permissions": [ "tabs", "https:\/\/*.twitter.com\/*", "storage" ], "browser_action": { "default_icon": "icon19.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "updatepage.js" ], "run_at": "document_start" } ] } |