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 |
Eメール | [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" } ] } |