Demobilizer

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

Was ist Demobilizer?

Demobilizer ist eine Chrome-Erweiterung, die von johnalexcasey entwickelt wurde, und ihr Hauptmerkmal ist "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Erweiterungsscreenshots

screenshot
screenshot

Demobilizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Demobilizer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Offizielle URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Beschreibung This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Dateigröße 18.01 KB
Installationsanzahl 38
Aktuelle Version 0.0.4
Letztes Update 2016-10-02
Veröffentlichungsdatum 2016-10-02
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler johnalexcasey
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}