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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically log into the Mastering Physics website. 확장 프로그램 기본 정보
| 이름 | |
| 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"
]
}
} | |