Amplifier AMP/Canonical switcher

Quickly switch between canonical and AMP version of a page

¿Qué es Amplifier AMP/Canonical switcher?

Amplifier AMP/Canonical switcher es una extensión de Chrome desarrollada por https://relaymedia.com, y su función principal es "Quickly switch between canonical and AMP version of a page".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Amplifier AMP/Canonical switcher

Descarga archivos de extensión Amplifier AMP/Canonical switcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Amplifier AMP/Canonical switcher Amplifier AMP/Canonical switcher
ID ennckgigejppolagdoadgaaodkhopjnb
URL Oficial https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb
Descripción Quickly switch between canonical and AMP version of a page
Tamaño del Archivo 11.35 KB
Cantidad de Instalaciones 807
Versión Actual 0.0.5
Última Actualización 2016-02-19
Fecha de Publicación 2016-02-19
Calificación 3.71/5 Total de 14 Calificaciones
Desarrollador https://relaymedia.com
Tipo de Pago free
Sitio Web de la Extensión http://www.relaymedia.com/
Idiomas Soportados 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"
}