Demobilizer

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

Vad är Demobilizer?

Demobilizer är en Chrome-tillägg utvecklad av johnalexcasey, och dess huvudfunktion är "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Demobilizer-förlängningens CRX-fil

Ladda ner Demobilizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
Officiell webbadress https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Beskrivning This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Filstorlek 18.01 KB
Antal Installationer 38
Aktuell Version 0.0.4
Senast Uppdaterad 2016-10-02
Publiceringsdatum 2016-10-02
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare johnalexcasey
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}