Demobilizer

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

Cos'è Demobilizer?

Demobilizer è un'estensione di Chrome sviluppata da johnalexcasey, e la sua funzione principale è "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Demobilizer

Scarica i file di estensione Demobilizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Ufficiale https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Descrizione This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Dimensione del File 18.01 KB
Conteggio Installazioni 38
Versione Corrente 0.0.4
Ultimo Aggiornamento 2016-10-02
Data di Pubblicazione 2016-10-02
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore johnalexcasey
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}