AMP Validator

Automatically checks each page for AMP validation.

O que é AMP Validator?

AMP Validator é uma extensão do Chrome desenvolvida por https://validator.ampproject.org, e sua principal característica é "Automatically checks each page for AMP validation.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AMP Validator

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

                        The AMP Validator will check the current page to see if it is an AMP page and then run it through the AMP validator and report if the page passes (green) or fails (red) via the extension icon.

If there are any warnings or errors it'll list the number underneath the extension icon and clicking the icon will display the warnings and/or errors.

If the current page is not an AMP page and one is available via  the extension icon turns blue and clicking it will load the AMP version of that page.

By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://policies.google.com/.                    

Informações Básicas da Extensão

Nome AMP Validator AMP Validator
ID nmoffdblmcmgeicmolmhobpoocbbmknc
URL Oficial https://chromewebstore.google.com/detail/amp-validator/nmoffdblmcmgeicmolmhobpoocbbmknc
Descrição Automatically checks each page for AMP validation.
Tamanho do Arquivo 2.51 MB
Contagem de Instalações 70,128
Versão Atual 1.3.1
Última Atualização 2024-01-17
Data de Publicação 2020-02-12
Classificação 4.26/5 Total de 95 Avaliações
Desenvolvedor https://validator.ampproject.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://amp.dev/
URL da Página de Política de Privacidade https://policies.google.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.3.1",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": {
            "19": "no-amp-128.png",
            "38": "no-amp-38.png"
        }
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "homepage_url": "https:\/\/amp.dev",
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/",
        ""
    ]
}