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