AMPInspect

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

Qu'est-ce que AMPInspect ?

AMPInspect est une extension Chrome développée par https://ampface.io, et sa fonction principale est "View the AMP version of websites you visit and discover the components they use.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension AMPInspect

Téléchargez les fichiers d'extension AMPInspect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
URL Officiel https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Description View the AMP version of websites you visit and discover the components they use.
Taille du Fichier 23.03 KB
Nombre d'Installations 58
Version Actuelle 1.1
Dernière Mise à Jour 2019-06-21
Date de Publication 2019-06-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://ampface.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://ampface.io/?amp
URL de la Page d'Aide https://ampface.io/?amp
Langues Prises en Charge 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"
            ]
        }
    ]
}