AMP Browser Extension

Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.

ما هو AMP Browser Extension؟

AMP Browser Extension هو إضافة Chrome تم تطويرها بواسطة http://ampbrowser.com، والميزة الرئيسية لها هي "Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة AMP Browser Extension

قم بتنزيل ملفات الامتداد AMP Browser Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The AMP Browser Extension helps when your connection is slow or unstable. It accelerates web browsing by:
- loading Accelerated Mobile Pages (AMP) or Mobile Instant Pages (MIP) whenever possible,
- switching between lightweight AMP and full-blown web pages by clicking on the extension icon or by keyboard shortcut,
- highlighting the AMP links in Google Search
- using Google AMP Cache for even faster loading,
- sending Save-Data header for data reduction,
- excluding user-selected hosts from processing.

All features as well as excluded hostnames can be easily edited in the extension Options, which are being synchronized across devices.

The extension is provided as-is, without any warranty, and it is not affiliated with Google. The source code is available at https://github.com/niutech/amp-browser-extension                    

معلومات أساسية عن التمديد

الاسم AMP Browser Extension AMP Browser Extension
ID mccnchmofleakpdohkmljohfckgpdehb
عنوان URL الرسمي https://chrome.google.com/webstore/detail/amp-browser-extension/mccnchmofleakpdohkmljohfckgpdehb
الوصف Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.
حجم الملف 26.7 KB
عدد التثبيتات 7,655
النسخة الحالية 1.3
آخر تحديث 2019-01-07
تاريخ النشر 2019-01-07
تقييم 3.87/5 مجموع تقييمات 15
المطور http://ampbrowser.com
نوع الدفع free
موقع الإضافة https://ampbrowser.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AMP Browser Extension",
    "short_name": "AMP Browser",
    "description": "Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.",
    "version": "1.3",
    "author": "AMP Browser",
    "homepage_url": "https:\/\/ampbrowser.com",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon-inactive48.png",
        "default_title": "No AMP HTML detected"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}