AMPInspect

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

Cos'è AMPInspect?

AMPInspect è un'estensione di Chrome sviluppata da https://ampface.io, e la sua funzione principale è "View the AMP version of websites you visit and discover the components they use.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AMPInspect

Scarica i file di estensione AMPInspect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
URL Ufficiale https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Descrizione View the AMP version of websites you visit and discover the components they use.
Dimensione del File 23.03 KB
Conteggio Installazioni 58
Versione Corrente 1.1
Ultimo Aggiornamento 2019-06-21
Data di Pubblicazione 2019-06-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://ampface.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://ampface.io/?amp
URL della Pagina di Aiuto https://ampface.io/?amp
Lingue Supportate 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"
            ]
        }
    ]
}