Amplifier AMP/Canonical switcher

Quickly switch between canonical and AMP version of a page

Co je Amplifier AMP/Canonical switcher?

Amplifier AMP/Canonical switcher je rozšíření Chrome vyvinuté https://relaymedia.com, a jeho hlavní funkcí je „Quickly switch between canonical and AMP version of a page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Amplifier AMP/Canonical switcher

Stáhněte si soubory rozšíření Amplifier AMP/Canonical switcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A simple extension to automatically switch between Accelerated Mobile (AMP) and Canonical versions of a page.  See https://www.ampproject.org/ for more info on AMP.

Version 0.0.3 added option to load AMP pages in developer mode.
Version 0.0.4 updated the icons for the new look chrome icon bar.
Version 0.0.4 fixed a bug where amp document uses ⚡ rather than "amp" in header

Open source https://github.com/jpettitt/amplifier                    

Základní Informace o Rozšíření

Název Amplifier AMP/Canonical switcher Amplifier AMP/Canonical switcher
ID ennckgigejppolagdoadgaaodkhopjnb
Oficiální URL https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb
Popis Quickly switch between canonical and AMP version of a page
Velikost souboru 11.35 KB
Počet instalací 807
Aktuální Verze 0.0.5
Poslední Aktualizace 2016-02-19
Datum Vydání 2016-02-19
Hodnocení 3.71/5 Celkem 14 Hodnocení
Vývojář https://relaymedia.com
Typ Platby free
Webové stránky Rozšíření http://www.relaymedia.com/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amplifier  AMP\/Canonical switcher",
    "short_name": "Amplifier",
    "description": "Quickly switch between canonical and AMP version of a page",
    "version": "0.0.5",
    "author": "John Pettitt",
    "icons": {
        "48": "amplifier48.png",
        "128": "amplifier128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "amplified.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": "switcher.png",
        "default_title": "AMP version not detected."
    },
    "options_page": "options.html"
}