Redirect AMP to HTML
Automatically redirects AMP pages to their canonical HTML equivalent.
什么是Redirect AMP to HTML?
Redirect AMP to HTML是由Aleksandersen开发的Chrome扩展程序,该扩展的主要功能是“Automatically redirects AMP pages to their canonical HTML equivalent.”。
扩展截图
下载Redirect AMP to HTML扩展crx文件
下载Redirect AMP to HTML扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically redirects any Accelerated Mobile Page (AMP) pages to their regular HTML equivalent. When you see an AMP page, you’re likely seeing a page served directly by Bing or Google who can suck in information about what you do on that page. Keep the web decentralized and say “No!” to search engines that want to take control over the web. AMP pages are designed for small-screen devices and often don’t translate well to larger screens. The extension can be especially useful if you receive links from people who’re on their mobile devices while you’re on your desktop computer.
扩展基本信息
名称 | Redirect AMP to HTML |
ID | kifkmmpiicbcnkjaliilaoeaojlldonl |
官方URL | https://chromewebstore.google.com/detail/redirect-amp-to-html/kifkmmpiicbcnkjaliilaoeaojlldonl |
简介 | Automatically redirects AMP pages to their canonical HTML equivalent. |
文件大小 | 17.32 KB |
安装次数 | 5,046 |
当前版本 | 2.1.0 |
更新时间 | 2020-04-13 |
上架时间 | 2020-04-13 |
评分 | 4.85/5 共20次评分 |
开发者 | Aleksandersen |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.daniel.priv.no/web-extensions/amp2html.html |
帮助页面URL | https://github.com/da2x/amp2html/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Redirect AMP to HTML", "description": "Automatically redirects AMP pages to their canonical HTML equivalent.", "short_name": "amp2html", "author": "Daniel Aleksandersen", "homepage_url": "https:\/\/www.daniel.priv.no\/web-extensions\/amp2html.html", "icons": { "48": "assets\/icon_48.png", "256": "assets\/icon_256.png" }, "permissions": [ "*:\/\/t.co\/*", "https:\/\/bing-amp.com\/c\/*", "https:\/\/*.bing-amp.com\/c\/*", "https:\/\/cdn.ampproject.org\/c\/*", "https:\/\/*.cdn.ampproject.org\/c\/*", "https:\/\/www.bing.com\/amp\/*", "https:\/\/www.google.com\/amp\/*", "webRequest", "webRequestBlocking" ], "background": { "scripts": [ "scripts\/redirector.js" ] }, "applications": { "gecko": { "id": "{569456be-2850-4f7e-b669-71e55140ee0a}", "strict_min_version": "60.0" } }, "incognito": "spanning", "content_scripts": [ { "js": [ "scripts\/amp2html.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ] } |