Redirect AMP to HTML

Automatically redirects AMP pages to their canonical HTML equivalent.

Redirect AMP to HTML là gì?

Redirect AMP to HTML là một tiện ích mở rộng Chrome được phát triển bởi Aleksandersen, và tính năng chính của nó là "Automatically redirects AMP pages to their canonical HTML equivalent.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Redirect AMP to HTML

Tải xuống các tệp mở rộng Redirect AMP to HTML 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Redirect AMP to HTML Redirect AMP to HTML
ID kifkmmpiicbcnkjaliilaoeaojlldonl
URL Chính Thức https://chromewebstore.google.com/detail/redirect-amp-to-html/kifkmmpiicbcnkjaliilaoeaojlldonl
Mô tả Automatically redirects AMP pages to their canonical HTML equivalent.
Kích Thước Tệp 17.32 KB
Số Lần Cài Đặt 5,046
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2020-04-13
Ngày Phát Hành 2020-04-13
Đánh Giá 4.85/5 Tổng số 20 Đánh Giá
Nhà Phát Triển Aleksandersen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.daniel.priv.no/web-extensions/amp2html.html
URL Trang Trợ Giúp https://github.com/da2x/amp2html/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}