Amplifier AMP/Canonical switcher
Quickly switch between canonical and AMP version of a page
Amplifier AMP/Canonical switcher là gì?
Amplifier AMP/Canonical switcher là một tiện ích mở rộng Chrome được phát triển bởi https://relaymedia.com, và tính năng chính của nó là "Quickly switch between canonical and AMP version of a page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Amplifier AMP/Canonical switcher
Tải xuống các tệp mở rộng Amplifier AMP/Canonical switcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Amplifier AMP/Canonical switcher |
ID | ennckgigejppolagdoadgaaodkhopjnb |
URL Chính Thức | https://chromewebstore.google.com/detail/amplifier-ampcanonical-sw/ennckgigejppolagdoadgaaodkhopjnb |
Mô tả | Quickly switch between canonical and AMP version of a page |
Kích Thước Tệp | 11.35 KB |
Số Lần Cài Đặt | 807 |
Phiên Bản Hiện Tại | 0.0.5 |
Cập Nhật Lần Cuối | 2016-02-19 |
Ngày Phát Hành | 2016-02-19 |
Đánh Giá | 3.71/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | https://relaymedia.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.relaymedia.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } |