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
Eメール [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"
            ]
        }
    ]
}