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