Demobilizer

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

Demobilizer là gì?

Demobilizer là một tiện ích mở rộng Chrome được phát triển bởi johnalexcasey, và tính năng chính của nó là "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Demobilizer

Tải xuống các tệp mở rộng Demobilizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Chính Thức https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Mô tả This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Kích Thước Tệp 18.01 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2016-10-02
Ngày Phát Hành 2016-10-02
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển johnalexcasey
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}