AMP Browser Extension

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

AMP Browser Extension là gì?

AMP Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi http://ampbrowser.com, và tính năng chính của nó là "Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng AMP Browser Extension 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

                        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                    

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

Tên AMP Browser Extension AMP Browser Extension
ID mccnchmofleakpdohkmljohfckgpdehb
URL Chính Thức https://chrome.google.com/webstore/detail/amp-browser-extension/mccnchmofleakpdohkmljohfckgpdehb
Mô tả Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.
Kích Thước Tệp 26.7 KB
Số Lần Cài Đặt 7,655
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2019-01-07
Ngày Phát Hành 2019-01-07
Đánh Giá 3.87/5 Tổng số 15 Đánh Giá
Nhà Phát Triển http://ampbrowser.com
Loại Thanh Toán free
Trang Web Mở Rộng https://ampbrowser.com
Ngôn Ngữ Được Hỗ Trợ 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
    }
}