Redirect AMP to HTML

Automatically redirects AMP pages to their canonical HTML equivalent.

Qu'est-ce que Redirect AMP to HTML ?

Redirect AMP to HTML est une extension Chrome développée par Aleksandersen, et sa fonction principale est "Automatically redirects AMP pages to their canonical HTML equivalent.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Redirect AMP to HTML

Téléchargez les fichiers d'extension Redirect AMP to HTML au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Redirect AMP to HTML Redirect AMP to HTML
ID kifkmmpiicbcnkjaliilaoeaojlldonl
URL Officiel https://chromewebstore.google.com/detail/redirect-amp-to-html/kifkmmpiicbcnkjaliilaoeaojlldonl
Description Automatically redirects AMP pages to their canonical HTML equivalent.
Taille du Fichier 17.32 KB
Nombre d'Installations 5,046
Version Actuelle 2.1.0
Dernière Mise à Jour 2020-04-13
Date de Publication 2020-04-13
Évaluation 4.85/5 Total 20 Évaluations
Développeur Aleksandersen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.daniel.priv.no/web-extensions/amp2html.html
URL de la Page d'Aide https://github.com/da2x/amp2html/issues
Langues Prises en Charge 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"
        }
    ]
}