DocsAfterDark

Modern, dark mode for Google Docs

Τι είναι το DocsAfterDark;

Το DocsAfterDark είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://waymondrang.com, και η κύρια λειτουργία του είναι "Modern, dark mode for Google Docs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DocsAfterDark

Λήψη αρχείων επέκτασης DocsAfterDark σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        DocsAfterDark relieves eye-strain from the Google Docs experience with a focus on functionality and artful design.

Easily enable or disable dark mode for any document without modifying the original project. Access dark mode settings and more in the extension option menu, which can be accessed by clicking on the extension icon in the browser toolbar.

Customize the document background to a darker shade, or use any valid background CSS value in the custom field, including images, gradients, and transparent backgrounds.*

With the invert and grayscale options, document content (excluding images*) will be rendered in a comfortable dark mode. By disabling the document border option, documents will blend into the background to create a seamless workspace.

To temporarily toggle dark mode on/off, click on the button in the bottom left corner of the page. Sometimes this button may block other elements, such as the word count widget. When this occurs, enable the Raise Button toggle in the option menu.

The global toggle in the option menu can be used to disable/enable the extension.

The source code, binary releases, and update notes are available on GitHub at https://github.com/waymondrang/DocsAfterDark.

*May be unstable on Chrome

If you enjoy using DocsAfterDark and would like to support its development, please consider donating on Buy Me a Coffee at https://www.buymeacoffee.com/waymondrang.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DocsAfterDark DocsAfterDark
ID pihphjfnfjmdbhakhjifipfdgbpenobg
Επίσημο URL https://chromewebstore.google.com/detail/docsafterdark/pihphjfnfjmdbhakhjifipfdgbpenobg
Περιγραφή Modern, dark mode for Google Docs
Μέγεθος Αρχείου 351 KB
Αριθμός Εγκαταστάσεων 44,300
Τρέχουσα Έκδοση 0.6.3
Τελευταία Ενημέρωση 2024-02-01
Ημερομηνία Δημοσίευσης 2022-01-18
Αξιολόγηση 4.67/5 Συνολικά 159 Αξιολογήσεις
Προγραμματιστής https://waymondrang.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://waymondrang.com/docsafterdark/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/waymondrang/DocsAfterDark
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DocsAfterDark",
    "version": "0.6.3",
    "description": "Modern, dark mode for Google Docs",
    "author": "Raymond Wang",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "word.js"
            ],
            "css": [
                "default.css"
            ]
        }
    ],
    "action": {
        "default_title": "DocsAfterDark Options",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "docs.css",
                "\/assets\/checkmark.secondary.png",
                "\/assets\/revisions_sprite1.secondary.svg",
                "\/assets\/close_18px.svg",
                "\/assets\/lens.svg",
                "\/assets\/jfk_sprite186.png",
                "\/assets\/jfk_sprite186.edited.png",
                "assets\/dimension-unhighlighted.edited.png",
                "assets\/dimension-highlighted.edited.png",
                "assets\/access_denied_transparent.png",
                "assets\/access_denied_600_transparent.png",
                "assets\/gm_add_black_24dp.png"
            ],
            "matches": [
                "*:\/\/docs.google.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "dad16.png",
        "48": "dad48.png",
        "128": "dad128.png"
    },
    "permissions": [
        "storage"
    ]
}