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はPheoniseによって開発されたChromeの拡張機能で、その主な機能は「This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!」です。

拡張機能のスクリーンショット

screenshot

Twitter Blues拡張機能のCRXファイルをダウンロード

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 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"
        }
    ]
}