Demobilizer

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

Co je Demobilizer?

Demobilizer je rozšíření Chrome vyvinuté johnalexcasey, a jeho hlavní funkcí je „This extension will direct a user to the non-mobile version of a website if they are on the mobile version.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Demobilizer

Stáhněte si soubory rozšíření Demobilizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Oficiální URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Popis This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Velikost souboru 18.01 KB
Počet instalací 38
Aktuální Verze 0.0.4
Poslední Aktualizace 2016-10-02
Datum Vydání 2016-10-02
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář johnalexcasey
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}