Mastering Physics Auto Login

Automatically logs into the Mastering Physics website.

O que é Mastering Physics Auto Login?

Mastering Physics Auto Login é uma extensão do Chrome desenvolvida por Tristan Rice, e sua principal característica é "Automatically logs into the Mastering Physics website.".

Baixar o arquivo CRX da Extensão Mastering Physics Auto Login

Baixe arquivos de extensão Mastering Physics Auto Login 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

                        Automatically log into the Mastering Physics website.                    

Informações Básicas da Extensão

Nome Mastering Physics Auto Login Mastering Physics Auto Login
ID eahnjkpbfemfepkcbocmgojmhcekpkne
URL Oficial https://chrome.google.com/webstore/detail/mastering-physics-auto-lo/eahnjkpbfemfepkcbocmgojmhcekpkne
Descrição Automatically logs into the Mastering Physics website.
Tamanho do Arquivo 78.4 KB
Contagem de Instalações 558
Versão Atual 0.4
Última Atualização 2014-02-11
Data de Publicação 2014-02-11
Classificação 3.38/5 Total de 8 Avaliações
Desenvolvedor Tristan Rice
Tipo de Pagamento free
Site da Extensão http://github.com/d4l3k/MasteringPhysicsLogin
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mastering Physics Auto Login",
    "description": "Automatically logs into the Mastering Physics website.",
    "version": "0.4",
    "icons": {
        "128": "logo-uprep.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.masteringphysics.com\/*"
            ],
            "css": [],
            "js": [
                "jquery-1.10.2.min.js",
                "work.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.pearsonmylabandmastering.com\/northamerica\/masteringphysics\/"
            ],
            "css": [],
            "js": [
                "jquery-1.10.2.min.js",
                "login.js"
            ]
        }
    ],
    "options_page": "popup.html",
    "permissions": [
        "http:\/\/www.masteringphysics.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.masteringphysics.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}