Demobilizer

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

什么是Demobilizer?

Demobilizer是由johnalexcasey开发的Chrome扩展程序,该扩展的主要功能是“This extension will direct a user to the non-mobile version of a website if they are on the mobile version.”。

扩展截图

screenshot
screenshot

下载Demobilizer扩展crx文件

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