Happy Owl

Night mode for Late night owls

Was ist Happy Owl?

Happy Owl ist eine Chrome-Erweiterung, die von http://happyowl.app entwickelt wurde, und ihr Hauptmerkmal ist "Night mode for Late night owls".

Erweiterungsscreenshots

screenshot

Happy Owl-Erweiterungs-CRX-Datei herunterladen

Laden Sie Happy Owl-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Happy owl enables dark/night mode for your favourite website. It currently supports Medium.com                    

Grundlegende Informationen zur Erweiterung

Name Happy Owl Happy Owl
ID kgohiohgjhjfpmpbemofmbbilehlifln
Offizielle URL https://chrome.google.com/webstore/detail/happy-owl/kgohiohgjhjfpmpbemofmbbilehlifln
Beschreibung Night mode for Late night owls
Dateigröße 47.73 KB
Installationsanzahl 30
Aktuelle Version 1.3.8
Letztes Update 2018-11-01
Veröffentlichungsdatum 2018-10-28
Entwickler http://happyowl.app
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://happyowl.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Happy Owl",
    "version": "1.3.8",
    "description": "Night mode for Late night owls",
    "author": "Swapnil Singh",
    "manifest_version": 2,
    "homepage_url": "https:\/\/happyowl.app",
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "32": "icons\/icon32.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/settings.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "style.css",
        "gist.css"
    ],
    "commands": {
        "disable-darker-medium": {
            "description": "Toggle Night Mode"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}