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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |