Mastering Physics Auto Login

Automatically logs into the Mastering Physics website.

什么是Mastering Physics Auto Login?

Mastering Physics Auto Login是由Tristan Rice开发的Chrome扩展程序,该扩展的主要功能是“Automatically logs into the Mastering Physics website.”。

下载Mastering Physics Auto Login扩展crx文件

下载Mastering Physics Auto Login扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Automatically log into the Mastering Physics website.                    

扩展基本信息

名称 Mastering Physics Auto Login Mastering Physics Auto Login
ID eahnjkpbfemfepkcbocmgojmhcekpkne
官方URL https://chrome.google.com/webstore/detail/mastering-physics-auto-lo/eahnjkpbfemfepkcbocmgojmhcekpkne
简介 Automatically logs into the Mastering Physics website.
文件大小 78.4 KB
安装次数 558
当前版本 0.4
更新时间 2014-02-11
上架时间 2014-02-11
评分 3.38/5 共8次评分
开发者 Tristan Rice
付费类型 free
扩展官网 http://github.com/d4l3k/MasteringPhysicsLogin
支持的语言 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"
        ]
    }
}