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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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 } } |