AMPInspect

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

Co je AMPInspect?

AMPInspect je rozšíření Chrome vyvinuté https://ampface.io, a jeho hlavní funkcí je „View the AMP version of websites you visit and discover the components they use.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AMPInspect

Stáhněte si soubory rozšíření AMPInspect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Oficiální URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Popis View the AMP version of websites you visit and discover the components they use.
Velikost souboru 23.03 KB
Počet instalací 58
Aktuální Verze 1.1
Poslední Aktualizace 2019-06-21
Datum Vydání 2019-06-20
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://ampface.io
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://ampface.io/?amp
URL Stránky Nápovědy https://ampface.io/?amp
Podporované Jazyky 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"
            ]
        }
    ]
}