AMPInspect

View the AMP version of websites you visit and discover the components they use.

O que é AMPInspect?

AMPInspect é uma extensão do Chrome desenvolvida por https://ampface.io, e sua principal característica é "View the AMP version of websites you visit and discover the components they use.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AMPInspect

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

                        This plugin displays a brief overview of websites using AMP (Accelerated Mobile Pages). 

For WordPress websites it will list if the official plugin has been installed (regardless if whether it's activated), and also lists whether the most popular non official AMP plugin has been installed. It display's this information on both AMP and non AMP WordPress URLs. 

For the official AMP plugin it will display the plugin version and mode when you visit an AMP page. 

For any AMP URL (WordPress or not) the popup lists the AMP components active on that page.                    

Informações Básicas da Extensão

Nome AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
URL Oficial https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Descrição View the AMP version of websites you visit and discover the components they use.
Tamanho do Arquivo 23.03 KB
Contagem de Instalações 58
Versão Atual 1.1
Última Atualização 2019-06-21
Data de Publicação 2019-06-20
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://ampface.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://ampface.io/?amp
URL da Página de Ajuda https://ampface.io/?amp
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AMPInspect",
    "version": "1.1",
    "manifest_version": 2,
    "description": "View the AMP version of websites you visit and discover the components they use.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}