Nightridr

Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.

Cos'è Nightridr?

Nightridr è un'estensione di Chrome sviluppata da baker.ja.andrew, e la sua funzione principale è "Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Nightridr

Scarica i file di estensione Nightridr in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        No more burning your eyes out at night. Nightridr enables a night version of popular websites. Suggestions for websites can be directed to [email protected]                    

Informazioni di Base sull'Estensione

Nome Nightridr Nightridr
ID hkceklljogohacpdfdogdcjpcoonkolf
URL Ufficiale https://chrome.google.com/webstore/detail/nightridr/hkceklljogohacpdfdogdcjpcoonkolf
Descrizione Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.
Dimensione del File 299 KB
Conteggio Installazioni 107
Versione Corrente 1.0
Ultimo Aggiornamento 2016-01-20
Data di Pubblicazione 2016-01-20
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore baker.ja.andrew
Tipo di Pagamento free
Sito Web dell'Estensione http://nightridr.andrewjbaker.me
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nightridr",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Night mode for all your favorite popular websites. Nightridr automatically makes pages dimmer and colored for night-time viewing.",
    "homepage_url": "http:\/\/nightridr.andrewjbaker.me",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.craigslist.org\/*",
                "*:\/\/*.cnn.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}