Google Docs In Dark

Says what it does or does what it says.

Google Docs In Dark là gì?

Google Docs In Dark là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Says what it does or does what it says.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Docs In Dark

Tải xuống các tệp mở rộng Google Docs In Dark dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Docs In Dark Google Docs In Dark
ID fipdcenemkbohhdgadjflhpfneohchmj
URL Chính Thức https://chromewebstore.google.com/detail/google-docs-in-dark/fipdcenemkbohhdgadjflhpfneohchmj
Mô tả Says what it does or does what it says.
Kích Thước Tệp 8.37 KB
Số Lần Cài Đặt 14,398
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-04-17
Ngày Phát Hành 2020-04-17
Đánh Giá 4.80/5 Tổng số 70 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Coderantine/GoogleDocsInDark
URL Trang Trợ Giúp https://github.com/Coderantine/GoogleDocsInDark/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}