Mastering Physics Auto Login
Automatically logs into the Mastering Physics website.
What is Mastering Physics Auto Login?
Mastering Physics Auto Login is a Chrome extension developed by Tristan Rice, and its main feature is "Automatically logs into the Mastering Physics website.".
Download Mastering Physics Auto Login Extension CRX File
Download Mastering Physics Auto Login extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Automatically log into the Mastering Physics website. Extension Basic Information
| Name | |
| ID | eahnjkpbfemfepkcbocmgojmhcekpkne |
| Official URL | https://chrome.google.com/webstore/detail/mastering-physics-auto-lo/eahnjkpbfemfepkcbocmgojmhcekpkne |
| Description | Automatically logs into the Mastering Physics website. |
| File Size | 78.4 KB |
| Installation Count | 558 |
| Current Version | 0.4 |
| Last Updated | 2014-02-11 |
| Publish Date | 2014-02-11 |
| Rating | 3.38/5 Total 8 Ratings |
| Developer | Tristan Rice |
| Payment Type | free |
| Extension Website | http://github.com/d4l3k/MasteringPhysicsLogin |
| Supported Languages | 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"
]
}
} | |