GeeksforGeeks Dark Mode

GfG Dark Mode

Что такое GeeksforGeeks Dark Mode?

GeeksforGeeks Dark Mode - это расширение Chrome, разработанное https://anantpatni.com, и его основная функция - "GfG Dark Mode".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения GeeksforGeeks Dark Mode

Скачайте файлы расширений GeeksforGeeks Dark Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        GeeksforGeeks dark mode is an extension that helps you quickly turn the website into a soothing dark theme.

Just click on the icon of the extension to toggle the theme.

Updates in v0.0.5 - Minor improvements on home page and sidenav                    

Основная информация о расширении

Название GeeksforGeeks Dark Mode GeeksforGeeks Dark Mode
ID nmdpdgickahiikobclgoolmfgiibegke
Официальный URL https://chromewebstore.google.com/detail/geeksforgeeks-dark-mode/nmdpdgickahiikobclgoolmfgiibegke
Описание GfG Dark Mode
Размер файла 37.94 KB
Количество установок 1,488
Текущая Версия 0.0.5
Последнее Обновление 2022-02-07
Дата публикации 2020-09-06
Рейтинг 4.11/5 Всего 18 оценок
Разработчик https://anantpatni.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.5",
    "name": "GeeksforGeeks Dark Mode",
    "short_name": "dark-mode",
    "description": "GfG Dark Mode",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "lib\/chrome\/background.html"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        "data\/content_script\/*.css"
    ],
    "browser_action": {
        "default_title": "GfG Dark Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    },
    "content_scripts": [
        {
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "matches": [
                "*:\/\/*.geeksforgeeks.org\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "data\/rules\/rules.js",
                "data\/content_script\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}