Twitter Blues
This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
What is Twitter Blues?
Twitter Blues is a Chrome extension developed by Pheonise, and its main feature is "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!".
Extension Screenshots
Download Twitter Blues Extension CRX File
Download Twitter Blues extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Twitter Blues |
ID | gkfadfcgdlbpkepcjdcicjjmphgehehk |
Official URL | https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk |
Description | This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker! |
File Size | 9.26 KB |
Installation Count | 23 |
Current Version | 0.2.3 |
Last Updated | 2016-06-20 |
Publish Date | 2016-06-20 |
Rating | 3.00/5 Total 1 Ratings |
Developer | Pheonise |
Payment Type | free |
Supported Languages | 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" } ] } |