Amplifier AMP/Canonical switcher
Quickly switch between canonical and AMP version of a page
Amplifier AMP/Canonical switcherคืออะไร?
Amplifier AMP/Canonical switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://relaymedia.com และคุณลักษณะหลักของมันคือ "Quickly switch between canonical and AMP version of a page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amplifier AMP/Canonical switcher
ดาวน์โหลดไฟล์ส่วนขยาย Amplifier AMP/Canonical switcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" } |