note-dark

Dark mode for note.com

Vad är note-dark?

note-dark är en Chrome-tillägg utvecklad av sakuraya, och dess huvudfunktion är "Dark mode for note.com".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner note-dark-förlängningens CRX-fil

Ladda ner note-dark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        apply dark mode style for https://note.com
The service provides no official dark mode, so this extension overwrite style to enable dark mode.                    

Grundläggande Information om Tillägg

Namn note-dark note-dark
ID ndjhheglhimmpjbgedbacgmloigpicng
Officiell webbadress https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng
Beskrivning Dark mode for note.com
Filstorlek 47.04 KB
Antal Installationer 26
Aktuell Version 1.0.13
Senast Uppdaterad 2020-12-30
Publiceringsdatum 2020-05-24
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare sakuraya
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Blue-Pix/note-dark
Stödda Språk ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "note-dark",
    "version": "1.0.13",
    "manifest_version": 2,
    "description": "Dark mode for note.com",
    "permissions": [
        "*:\/\/note.com\/*"
    ],
    "web_accessible_resources": [
        "images\/*",
        "*.css"
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.4.1.slim.min.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/note.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}