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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
    }
}