Only HTML

Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.

O que é Only HTML?

Only HTML é uma extensão do Chrome desenvolvida por https://browsernative.com, e sua principal característica é "Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Only HTML

Baixe arquivos de extensão Only 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

                        Click on extension's icon on the toolbar to activate or deactivate it. 

When activated, this extension loads only HTML content, inline styles, and inline images (SVG or Data URLs etc). It blocks other content types like JavaScript, images, videos, web fonts etc.

By blocking these resources, the extension can improve the loading speed of web pages and reduce the amount of data transferred over the network. Moreover, Developers could benefit from having a preview of the HTML-only version of their webpages.

Extension by BrowserNative. Visit our support page for more information and feedback.                    

Informações Básicas da Extensão

Nome Only HTML Only HTML
ID jdlecmkgdgeabgpjhbhdpkfcllgacdil
URL Oficial https://chromewebstore.google.com/detail/only-html/jdlecmkgdgeabgpjhbhdpkfcllgacdil
Descrição Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.
Tamanho do Arquivo 11.65 KB
Contagem de Instalações 88
Versão Atual 1.0.1
Última Atualização 2023-04-25
Data de Publicação 2023-04-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://browsernative.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://browsernative.com/only-html/
URL da Página de Ajuda https://browsernative.com/only-html/
URL da Página de Política de Privacidade https://browsernative.com/extensions-privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Only HTML",
    "description": "Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.",
    "version": "1.0.1",
    "short_name": "Only HTML",
    "manifest_version": 3,
    "background": {
        "service_worker": "sw.js"
    },
    "icons": {
        "48": "static\/icon-48.png",
        "128": "static\/icon-128.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "contentSettings"
    ],
    "host_permissions": [
        ""
    ],
    "minimum_chrome_version": "101",
    "action": {
        "default_icon": {
            "48": "static\/icon-48.png",
            "128": "static\/icon-128.png"
        },
        "default_title": "Only HTML"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": false,
                "path": "rules.json"
            }
        ]
    },
    "homepage_url": "https:\/\/browsernative.com\/only-html\/"
}