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
官方網址 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"
            ]
        }
    ]
}