AMPInspect

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

Hvad er AMPInspect?

AMPInspect er en Chrome-udvidelse udviklet af https://ampface.io, og dens hovedfunktion er "View the AMP version of websites you visit and discover the components they use.".

Udvidelsesskærmbilleder

screenshot

Download AMPInspect-udvidelses-CRX-fil

Download AMPInspect-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Officiel URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Beskrivelse View the AMP version of websites you visit and discover the components they use.
Filstørrelse 23.03 KB
Antal Installationer 58
Nuværende Version 1.1
Senest Opdateret 2019-06-21
Udgivelsesdato 2019-06-20
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://ampface.io
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://ampface.io/?amp
Hjælpeside-URL https://ampface.io/?amp
Understøttede Sprog 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"
            ]
        }
    ]
}