AMPInspect

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

Co to jest AMPInspect?

AMPInspect to rozszerzenie Chrome opracowane przez https://ampface.io, a jego główną funkcją jest „View the AMP version of websites you visit and discover the components they use.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AMPInspect

Pobierz pliki rozszerzeń AMPInspect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Oficjalny URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Opis View the AMP version of websites you visit and discover the components they use.
Rozmiar pliku 23.03 KB
Liczba instalacji 58
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2019-06-21
Data Publikacji 2019-06-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://ampface.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://ampface.io/?amp
Adres URL Strony Pomocy https://ampface.io/?amp
Obsługiwane Języki 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"
            ]
        }
    ]
}