AMPInspect

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

AMPInspect là gì?

AMPInspect là một tiện ích mở rộng Chrome được phát triển bởi https://ampface.io, và tính năng chính của nó là "View the AMP version of websites you visit and discover the components they use.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AMPInspect

Tải xuống các tệp mở rộng AMPInspect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
URL Chính Thức https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Mô tả View the AMP version of websites you visit and discover the components they use.
Kích Thước Tệp 23.03 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-06-21
Ngày Phát Hành 2019-06-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://ampface.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ampface.io/?amp
URL Trang Trợ Giúp https://ampface.io/?amp
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}