Amplifier AMP/Canonical switcher
Quickly switch between canonical and AMP version of a page
O que é Amplifier AMP/Canonical switcher?
Amplifier AMP/Canonical switcher é uma extensão do Chrome desenvolvida por https://relaymedia.com, e sua principal característica é "Quickly switch between canonical and AMP version of a page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Amplifier AMP/Canonical switcher
Baixe arquivos de extensão Amplifier AMP/Canonical switcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Amplifier AMP/Canonical switcher |
ID | ennckgigejppolagdoadgaaodkhopjnb |
URL Oficial | https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb |
Descrição | Quickly switch between canonical and AMP version of a page |
Tamanho do Arquivo | 11.35 KB |
Contagem de Instalações | 807 |
Versão Atual | 0.0.5 |
Última Atualização | 2016-02-19 |
Data de Publicação | 2016-02-19 |
Classificação | 3.71/5 Total de 14 Avaliações |
Desenvolvedor | https://relaymedia.com |
Tipo de Pagamento | free |
Site da Extensão | http://www.relaymedia.com/ |
Idiomas Suportados | 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" } |