Night Viewer - Dark mode for view page source

Night Viewer enables dark mode for the View Page Sources, structures and formats the code to make it more readable

Что такое Night Viewer - Dark mode for view page source?

Night Viewer - Dark mode for view page source - это расширение Chrome, разработанное https://nighteye.app, и его основная функция - "Night Viewer enables dark mode for the View Page Sources, structures and formats the code to make it more readable".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Night Viewer - Dark mode for view page source

Скачайте файлы расширений Night Viewer - Dark mode for view page source в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        A lightweight and free Chrome Extension that enables dark mode for the View Page Source. Not only that, it also shows you how the browser has rendered a page’s original HTML into a functioning DOM, including modifications made by JavaScript. Night Viewer allows you to modify the font size of the View Page Source by increasing or decreasing it to make it more readable.

CORE FEATURES
➤ Enable dark mode for the View Page Source
➤ Allow you to modify (increase and decrease) the font size at the View Page Source
➤ Beautify the source code to make it more readable 
➤ Show you source code before JavaScript execution (returned from server)
➤ Show you source code after JavaScript execution (same as Developer 

FREE FOREVER
Night Viewer is completely FREE extension that is developed by the team behind one of the best dark mode extensions - Night Eye
More details can be found at http://nighteye.app

WE CARE ABOUT PRIVACY
Instead of simply pointing you to our privacy policy. We would like to address this topic in the most understandable language here.
This extension is serverless - no requests are being made. The only data it collects and stores locally (on your computer) is what type of font have you chosen and the preferred source code view.


FOLLOW US::
Facebook - https://facebook.com/night.eye.extension/
Twitter - https://twitter.com/nighteye_ext
Pinterest -https://pinterest.com/nighteyeextension/                    

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

Название Night Viewer - Dark mode for view page source Night Viewer - Dark mode for view page source
ID pmhchjgmgioomimpjkfpofmpfgnepiab
Официальный URL https://chromewebstore.google.com/detail/night-viewer-dark-mode-fo/pmhchjgmgioomimpjkfpofmpfgnepiab
Описание Night Viewer enables dark mode for the View Page Sources, structures and formats the code to make it more readable
Размер файла 387 KB
Количество установок 1,034
Текущая Версия 1.4.3
Последнее Обновление 2023-09-11
Дата публикации 2020-05-07
Рейтинг 3.36/5 Всего 14 оценок
Разработчик https://nighteye.app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://nighteye.app/
URL страницы помощи https://nighteye.app/support
URL страницы политики конфиденциальности https://nighteye.app/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Viewer - Dark mode for view page source",
    "description": "Night Viewer enables dark mode for the View Page Sources, structures and formats the code to make it more readable",
    "homepage_url": "https:\/\/nighteye.app",
    "version": "1.4.3",
    "author": "Promotino Ltd.",
    "icons": {
        "16": "res\/icon-16.png",
        "48": "res\/icon-48.png",
        "128": "res\/icon-128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "res\/fonts\/*.woff",
                "res\/fonts\/*.woff2"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "offline_enabled": true,
    "action": {
        "default_icon": "res\/icon-64.png",
        "default_popup": "html\/browser-action\/popup.html",
        "default_title": "Night Viewer"
    }
}