darkify

darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.

Qu'est-ce que darkify ?

darkify est une extension Chrome développée par HeilerApps, et sa fonction principale est "darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension darkify

Téléchargez les fichiers d'extension darkify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        The darkify extension will try to modify every website to a dark version of it. You can configure it to automatically run on a period of time, exclude some pages or manually start and stoping it.

If you have any improvement ideas or bugs, please report them here: https://github.com/gheiler/darkify/issues
Also if you want to contribute feel free to create a pull request.

Enjoy! 
Gabriel                    

Informations de Base sur l'Extension

Nom darkify darkify
ID lchabmjccahchaflojonfbepjbbnipfc
URL Officiel https://chromewebstore.google.com/detail/darkify/lchabmjccahchaflojonfbepjbbnipfc
Description darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.
Taille du Fichier 77.93 KB
Nombre d'Installations 318
Version Actuelle 0.2.2
Dernière Mise à Jour 2022-09-21
Date de Publication 2020-04-15
Évaluation 5.00/5 Total 2 Évaluations
Développeur HeilerApps
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://gabriel.heiler.dev
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "darkify",
    "version": "0.2.2",
    "description": "darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.",
    "author": "Gabriel Heiler",
    "homepage_url": "https:\/\/gabriel.heiler.dev",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/basics.css"
            ],
            "js": [
                "js\/startscript.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/basics.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "matches": [
            "http:\/\/*\/*",
            "https:\/\/*\/*",
            "*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/darkify-16.png",
            "32": "img\/darkify-32.png",
            "48": "img\/darkify.png",
            "128": "img\/darkify-128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/darkify-16.png",
        "32": "img\/darkify-32.png",
        "48": "img\/darkify-48.png",
        "128": "img\/darkify-128.png"
    },
    "web_accessible_resources": [
        "css\/basics.css",
        "css\/extras.css"
    ],
    "manifest_version": 2
}