Save Rendered HTML

A Chrome extension that saves the fully rendered HTML of the current tab.

Что такое Save Rendered HTML?

Save Rendered HTML - это расширение Chrome, разработанное Teddy, и его основная функция - "A Chrome extension that saves the fully rendered HTML of the current tab.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Save Rendered HTML

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

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

                        Save Rendered HTML Chrome Extension
===================================

This Chrome extension allows you to save the fully rendered HTML of the current tab by clicking a button in the extension's popup.

Features
--------

*   Save the fully rendered HTML of the current tab as a file
*   Automatically generates a timestamped file name for the saved HTML



Usage
-----

1.  Visit a web page in Google Chrome.
2.  Click the extension's icon to open the popup.
3.  Click the "Save HTML" button to download the fully rendered HTML of the current tab as a file.

The file will be named `rendered_html_.html`, where `` is the current date and time in ISO 8601 format.                    

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

Название Save Rendered HTML Save Rendered HTML
ID pdlopbmgodpapaoeiagfcdcgdhmdpgpk
Официальный URL https://chromewebstore.google.com/detail/save-rendered-html/pdlopbmgodpapaoeiagfcdcgdhmdpgpk
Описание A Chrome extension that saves the fully rendered HTML of the current tab.
Размер файла 164 KB
Количество установок 70
Текущая Версия 1.1.7
Последнее Обновление 2023-11-10
Дата публикации 2023-11-10
Рейтинг 3.00/5 Всего 1 оценок
Разработчик Teddy
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/tddschn/save-rendered-html-extension
URL страницы помощи https://github.com/tddschn/save-rendered-html-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save Rendered HTML",
    "version": "1.1.7",
    "description": "A Chrome extension that saves the fully rendered HTML of the current tab.",
    "permissions": [
        "activeTab",
        "downloads",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}