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是由http://ampbrowser.com開發的Chrome擴展程式,該擴展的主要功能是“Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.”。
擴展截圖
下載AMP Browser Extension擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | mccnchmofleakpdohkmljohfckgpdehb |
| 官方網址 | 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
}
} | |