AMP Browser Extension

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

Was ist AMP Browser Extension?

AMP Browser Extension ist eine Chrome-Erweiterung, die von http://ampbrowser.com entwickelt wurde, und ihr Hauptmerkmal ist "Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.".

Erweiterungsscreenshots

screenshot
screenshot

AMP Browser Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie AMP Browser Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name AMP Browser Extension AMP Browser Extension
ID mccnchmofleakpdohkmljohfckgpdehb
Offizielle URL https://chrome.google.com/webstore/detail/amp-browser-extension/mccnchmofleakpdohkmljohfckgpdehb
Beschreibung Accelerate web browsing by automatically loading AMP or MIP versions of web pages, saving data and bandwidth.
Dateigröße 26.7 KB
Installationsanzahl 7,655
Aktuelle Version 1.3
Letztes Update 2019-01-07
Veröffentlichungsdatum 2019-01-07
Bewertung 3.87/5 Insgesamt 15 Bewertungen
Entwickler http://ampbrowser.com
Zahlungsart free
Erweiterungswebsite https://ampbrowser.com
Unterstützte Sprachen 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
    }
}