Demobilizer

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

O que é Demobilizer?

Demobilizer é uma extensão do Chrome desenvolvida por johnalexcasey, e sua principal característica é "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Demobilizer

Baixe arquivos de extensão Demobilizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
URL Oficial https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
Descrição This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
Tamanho do Arquivo 18.01 KB
Contagem de Instalações 38
Versão Atual 0.0.4
Última Atualização 2016-10-02
Data de Publicação 2016-10-02
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor johnalexcasey
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}