Amplifier AMP/Canonical switcher

Quickly switch between canonical and AMP version of a page

Amplifier AMP/Canonical switcher란 무엇입니까?

Amplifier AMP/Canonical switcher은(는) https://relaymedia.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly switch between canonical and AMP version of a page"입니다.

확장 프로그램 스크린샷

screenshot

Amplifier AMP/Canonical switcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Amplifier AMP/Canonical switcher Amplifier AMP/Canonical switcher
ID ennckgigejppolagdoadgaaodkhopjnb
공식 URL https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb
설명 Quickly switch between canonical and AMP version of a page
파일 크기 11.35 KB
설치 횟수 807
현재 버전 0.0.5
최근 업데이트 2016-02-19
출시 날짜 2016-02-19
평점 3.71/5 총 14 개의 평점
개발자 https://relaymedia.com
결제 유형 free
확장 프로그램 웹 사이트 http://www.relaymedia.com/
지원되는 언어 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"
}