Google Docs In Dark

Says what it does or does what it says.

什么是Google Docs In Dark?

Google Docs In Dark是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Says what it does or does what it says.”。

扩展截图

screenshot

下载Google Docs In Dark扩展crx文件

下载Google Docs In Dark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Google Docs In Dark Google Docs In Dark
ID fipdcenemkbohhdgadjflhpfneohchmj
官方URL https://chromewebstore.google.com/detail/google-docs-in-dark/fipdcenemkbohhdgadjflhpfneohchmj
简介 Says what it does or does what it says.
文件大小 8.37 KB
安装次数 14,398
当前版本 1.0.0
更新时间 2020-04-17
上架时间 2020-04-17
评分 4.80/5 共70次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/Coderantine/GoogleDocsInDark
帮助页面URL https://github.com/Coderantine/GoogleDocsInDark/issues
支持的语言 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"
            ]
        }
    ]
}