Twitter Blues

This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!

Co to jest Twitter Blues?

Twitter Blues to rozszerzenie Chrome opracowane przez Pheonise, a jego główną funkcją jest „This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitter Blues

Pobierz pliki rozszerzeń Twitter Blues w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitter Blues Twitter Blues
ID gkfadfcgdlbpkepcjdcicjjmphgehehk
Oficjalny URL https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk
Opis This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
Rozmiar pliku 9.26 KB
Liczba instalacji 23
Aktualna Wersja 0.2.3
Ostatnia Aktualizacja 2016-06-20
Data Publikacji 2016-06-20
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper Pheonise
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}