Save Rendered HTML
A Chrome extension that saves the fully rendered HTML of the current tab.
O que é Save Rendered HTML?
Save Rendered HTML é uma extensão do Chrome desenvolvida por Teddy, e sua principal característica é "A Chrome extension that saves the fully rendered HTML of the current tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Save Rendered HTML
Baixe arquivos de extensão Save Rendered HTML no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Save Rendered HTML |
ID | pdlopbmgodpapaoeiagfcdcgdhmdpgpk |
URL Oficial | https://chromewebstore.google.com/detail/save-rendered-html/pdlopbmgodpapaoeiagfcdcgdhmdpgpk |
Descrição | A Chrome extension that saves the fully rendered HTML of the current tab. |
Tamanho do Arquivo | 164 KB |
Contagem de Instalações | 70 |
Versão Atual | 1.1.7 |
Última Atualização | 2023-11-10 |
Data de Publicação | 2023-11-10 |
Classificação | 3.00/5 Total de 1 Avaliações |
Desenvolvedor | Teddy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tddschn/save-rendered-html-extension |
URL da Página de Ajuda | https://github.com/tddschn/save-rendered-html-extension/issues |
Idiomas Suportados | 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" } } |