Google Docs In Dark

Says what it does or does what it says.

Wat is Google Docs In Dark?

Google Docs In Dark is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Says what it does or does what it says.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Docs In Dark

Download Google Docs In Dark-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        It's just inverting page colors and it surprisingly looks awesome in google docs.                    

Basisinformatie over de Extensie

Naam Google Docs In Dark Google Docs In Dark
ID fipdcenemkbohhdgadjflhpfneohchmj
Officiële URL https://chromewebstore.google.com/detail/google-docs-in-dark/fipdcenemkbohhdgadjflhpfneohchmj
Beschrijving Says what it does or does what it says.
Bestandsgrootte 8.37 KB
Aantal Installaties 14,398
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-04-17
Publicatiedatum 2020-04-17
Beoordeling 4.80/5 Totaal 70 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/Coderantine/GoogleDocsInDark
Help Pagina-URL https://github.com/Coderantine/GoogleDocsInDark/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Docs In Dark",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "Says what it does or does what it says.",
    "homepage_url": "https:\/\/github.com\/Coderantine\/GoogleDocsInDark",
    "short_name": "DocsInDark",
    "permissions": [
        "storage",
        "declarativeContent",
        "*:\/\/docs.google.com\/*"
    ],
    "author": "arkoc",
    "minimum_chrome_version": "49",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "Docs in Dark"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}