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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}