Mastering Physics Auto Login

Automatically logs into the Mastering Physics website.

Was ist Mastering Physics Auto Login?

Mastering Physics Auto Login ist eine Chrome-Erweiterung, die von Tristan Rice entwickelt wurde, und ihr Hauptmerkmal ist "Automatically logs into the Mastering Physics website.".

Mastering Physics Auto Login-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mastering Physics Auto Login-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Automatically log into the Mastering Physics website.                    

Grundlegende Informationen zur Erweiterung

Name Mastering Physics Auto Login Mastering Physics Auto Login
ID eahnjkpbfemfepkcbocmgojmhcekpkne
Offizielle URL https://chrome.google.com/webstore/detail/mastering-physics-auto-lo/eahnjkpbfemfepkcbocmgojmhcekpkne
Beschreibung Automatically logs into the Mastering Physics website.
Dateigröße 78.4 KB
Installationsanzahl 558
Aktuelle Version 0.4
Letztes Update 2014-02-11
Veröffentlichungsdatum 2014-02-11
Bewertung 3.38/5 Insgesamt 8 Bewertungen
Entwickler Tristan Rice
Zahlungsart free
Erweiterungswebsite http://github.com/d4l3k/MasteringPhysicsLogin
Unterstützte Sprachen 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"
        ]
    }
}