Demobilizer

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

¿Qué es Demobilizer?

Demobilizer es una extensión de Chrome desarrollada por johnalexcasey, y su función principal es "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Demobilizer

Descarga archivos de extensión Demobilizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Oficial https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Descripción This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Tamaño del Archivo 18.01 KB
Cantidad de Instalaciones 38
Versión Actual 0.0.4
Última Actualización 2016-10-02
Fecha de Publicación 2016-10-02
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador johnalexcasey
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}