Demobilizer

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

Wat is Demobilizer?

Demobilizer is een Chrome-extensie ontwikkeld door johnalexcasey, en de belangrijkste functie is "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Demobilizer

Download Demobilizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Officiële URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Beschrijving This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Bestandsgrootte 18.01 KB
Aantal Installaties 38
Huidige Versie 0.0.4
Laatst Bijgewerkt 2016-10-02
Publicatiedatum 2016-10-02
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar johnalexcasey
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}