AMPInspect

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

Was ist AMPInspect?

AMPInspect ist eine Chrome-Erweiterung, die von https://ampface.io entwickelt wurde, und ihr Hauptmerkmal ist "View the AMP version of websites you visit and discover the components they use.".

Erweiterungsscreenshots

screenshot

AMPInspect-Erweiterungs-CRX-Datei herunterladen

Laden Sie AMPInspect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Offizielle URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Beschreibung View the AMP version of websites you visit and discover the components they use.
Dateigröße 23.03 KB
Installationsanzahl 58
Aktuelle Version 1.1
Letztes Update 2019-06-21
Veröffentlichungsdatum 2019-06-20
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://ampface.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://ampface.io/?amp
Hilfeseite URL https://ampface.io/?amp
Unterstützte Sprachen 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"
            ]
        }
    ]
}