Demobilizer

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

Hvad er Demobilizer?

Demobilizer er en Chrome-udvidelse udviklet af johnalexcasey, og dens hovedfunktion er "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Demobilizer-udvidelses-CRX-fil

Download Demobilizer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Officiel URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Beskrivelse This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Filstørrelse 18.01 KB
Antal Installationer 38
Nuværende Version 0.0.4
Senest Opdateret 2016-10-02
Udgivelsesdato 2016-10-02
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler johnalexcasey
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}