Demobilizer

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

Apa itu Demobilizer?

Demobilizer adalah ekstensi Chrome yang dikembangkan oleh johnalexcasey, dan fitur utamanya adalah "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Demobilizer

Unduh file ekstensi Demobilizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Resmi https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Deskripsi This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Ukuran File 18.01 KB
Jumlah Instalasi 38
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2016-10-02
Tanggal Publikasi 2016-10-02
Penilaian 5.00/5 Total 3 Penilaian
Pengembang johnalexcasey
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}