Amplifier AMP/Canonical switcher

Quickly switch between canonical and AMP version of a page

What is Amplifier AMP/Canonical switcher?

Amplifier AMP/Canonical switcher is a Chrome extension developed by https://relaymedia.com, and its main feature is "Quickly switch between canonical and AMP version of a page".

Extension Screenshots

screenshot

Download Amplifier AMP/Canonical switcher Extension CRX File

Download Amplifier AMP/Canonical switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Amplifier AMP/Canonical switcher Amplifier AMP/Canonical switcher
ID ennckgigejppolagdoadgaaodkhopjnb
Official URL https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb
Description Quickly switch between canonical and AMP version of a page
File Size 11.35 KB
Installation Count 807
Current Version 0.0.5
Last Updated 2016-02-19
Publish Date 2016-02-19
Rating 3.71/5 Total 14 Ratings
Developer https://relaymedia.com
Payment Type free
Extension Website http://www.relaymedia.com/
Supported Languages 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"
}