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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}