AMPInspect

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

What is AMPInspect?

AMPInspect is a Chrome extension developed by https://ampface.io, and its main feature is "View the AMP version of websites you visit and discover the components they use.".

Extension Screenshots

screenshot

Download AMPInspect Extension CRX File

Download AMPInspect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Official URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Description View the AMP version of websites you visit and discover the components they use.
File Size 23.03 KB
Installation Count 58
Current Version 1.1
Last Updated 2019-06-21
Publish Date 2019-06-20
Rating 5.00/5 Total 2 Ratings
Developer https://ampface.io
Email [email protected]
Payment Type free
Extension Website https://ampface.io/?amp
Help Page URL https://ampface.io/?amp
Supported Languages 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"
            ]
        }
    ]
}