Demobilizer

This extension will direct a user to the non-mobile version of a website if they are on the mobile version.

Qu'est-ce que Demobilizer ?

Demobilizer est une extension Chrome développée par johnalexcasey, et sa fonction principale est "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Demobilizer

Téléchargez les fichiers d'extension Demobilizer 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

                        This extension will direct a user to the non-mobile version of a website if they are on the mobile version of said website. It is specifically geared towards the mobile Wikipedia and Reddit website, though I will try to update it to work with others.                    

Informations de Base sur l'Extension

Nom Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Officiel https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Description This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Taille du Fichier 18.01 KB
Nombre d'Installations 38
Version Actuelle 0.0.4
Dernière Mise à Jour 2016-10-02
Date de Publication 2016-10-02
Évaluation 5.00/5 Total 3 Évaluations
Développeur johnalexcasey
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Demobilizer",
    "description": "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.",
    "version": "0.0.4",
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}