Demobilizer

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

Co to jest Demobilizer?

Demobilizer to rozszerzenie Chrome opracowane przez johnalexcasey, a jego główną funkcją jest „This extension will direct a user to the non-mobile version of a website if they are on the mobile version.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Demobilizer

Pobierz pliki rozszerzeń Demobilizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Oficjalny URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Opis This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Rozmiar pliku 18.01 KB
Liczba instalacji 38
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2016-10-02
Data Publikacji 2016-10-02
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper johnalexcasey
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}