Google Docs In Dark
Says what it does or does what it says.
What is Google Docs In Dark?
Google Docs In Dark is a Chrome extension developed by Unknown, and its main feature is "Says what it does or does what it says.".
Extension Screenshots
Download Google Docs In Dark Extension CRX File
Download Google Docs In Dark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
It's just inverting page colors and it surprisingly looks awesome in google docs.
Extension Basic Information
Name | Google Docs In Dark |
ID | fipdcenemkbohhdgadjflhpfneohchmj |
Official URL | https://chromewebstore.google.com/detail/google-docs-in-dark/fipdcenemkbohhdgadjflhpfneohchmj |
Description | Says what it does or does what it says. |
File Size | 8.37 KB |
Installation Count | 14,398 |
Current Version | 1.0.0 |
Last Updated | 2020-04-17 |
Publish Date | 2020-04-17 |
Rating | 4.80/5 Total 70 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/Coderantine/GoogleDocsInDark |
Help Page URL | https://github.com/Coderantine/GoogleDocsInDark/issues |
Supported Languages | 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" ] } ] } |