AMPInspect

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

什么是AMPInspect?

AMPInspect是由https://ampface.io开发的Chrome扩展程序,该扩展的主要功能是“View the AMP version of websites you visit and discover the components they use.”。

扩展截图

screenshot

下载AMPInspect扩展crx文件

下载AMPInspect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
官方URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
简介 View the AMP version of websites you visit and discover the components they use.
文件大小 23.03 KB
安装次数 58
当前版本 1.1
更新时间 2019-06-21
上架时间 2019-06-20
评分 5.00/5 共2次评分
开发者 https://ampface.io
电子邮箱 [email protected]
付费类型 free
扩展官网 https://ampface.io/?amp
帮助页面URL https://ampface.io/?amp
支持的语言 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"
            ]
        }
    ]
}