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"
            ]
        }
    ]
}