AMP Browser Extension
Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.
Qu'est-ce que AMP Browser Extension ?
AMP Browser Extension est une extension Chrome développée par http://ampbrowser.com, et sa fonction principale est "Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AMP Browser Extension
Téléchargez les fichiers d'extension AMP Browser Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | mccnchmofleakpdohkmljohfckgpdehb |
URL Officiel | https://chrome.google.com/webstore/detail/amp-browser-extension/mccnchmofleakpdohkmljohfckgpdehb |
Description | Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth. |
Taille du Fichier | 26.7 KB |
Nombre d'Installations | 7,655 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2019-01-07 |
Date de Publication | 2019-01-07 |
Évaluation | 3.87/5 Total 15 Évaluations |
Développeur | http://ampbrowser.com |
Type de Paiement | free |
Site Web de l'Extension | https://ampbrowser.com |
Langues Prises en Charge | 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 } } |