AMPInspect

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

AMPInspectคืออะไร?

AMPInspect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ampface.io และคุณลักษณะหลักของมันคือ "View the AMP version of websites you visit and discover the components they use."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AMPInspect

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}