Demobilizer

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

ما هو Demobilizer؟

Demobilizer هو إضافة Chrome تم تطويرها بواسطة johnalexcasey، والميزة الرئيسية لها هي "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Demobilizer

قم بتنزيل ملفات الامتداد Demobilizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
عنوان URL الرسمي https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
الوصف This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
حجم الملف 18.01 KB
عدد التثبيتات 38
النسخة الحالية 0.0.4
آخر تحديث 2016-10-02
تاريخ النشر 2016-10-02
تقييم 5.00/5 مجموع تقييمات 3
المطور johnalexcasey
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
            ]
        }
    ]
}