MIT Textbooks
Clickable class names on any website!
MIT Textbooks란 무엇입니까?
MIT Textbooks은(는) https://textbooksearch.mit.edu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clickable class names on any website!"입니다.
확장 프로그램 스크린샷
MIT Textbooks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MIT Textbooks is a search engine for all your classes, as well as a marketplace for buying and selling new and used textbooks from other MIT students and online vendors. We try to find you the best price, as well as the most convenient delivery options for all your class textbooks. Searching for a class pulls up all the information you could ever want, along with links to the cheapest copies of the textbooks available online. If you search for a group of classes, you can also export them to CourseRoad, name and share them, or view and export them to your calendar. This extension will make all references to MIT classes on the Internet clickable, as well as add MIT Textbooks as a shortcut ('tb') to the omnibar. MIT Textbooks is not officially affiliated with MIT in any way (other than that the creator is a student!).
확장 프로그램 기본 정보
이름 | MIT Textbooks |
ID | ndgcomkciihbdocdhnhaekkkgblcgcml |
공식 URL | https://chromewebstore.google.com/detail/mit-textbooks/ndgcomkciihbdocdhnhaekkkgblcgcml |
설명 | Clickable class names on any website! |
파일 크기 | 97.64 KB |
설치 횟수 | 117 |
현재 버전 | 1.5.19 |
최근 업데이트 | 2017-04-07 |
출시 날짜 | 2017-04-06 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | https://textbooksearch.mit.edu |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://textbooksearch.mit.edu/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MIT Textbooks", "short_name": "MIT Textbooks", "version": "1.5.19", "manifest_version": 2, "description": "Clickable class names on any website!", "author": "Yasyf Mohamedali", "homepage_url": "http:\/\/textbooksearch.mit.edu\/", "permissions": [ "*:\/\/*\/*" ], "omnibox": { "keyword": "tb" }, "icons": { "16": "assets\/icons\/16.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/textbooksearch.mit.edu\/*" ], "js": [ "assets\/js\/hide_button.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.mit.edu\/*", "*:\/\/*.google.com\/*", "*:\/\/*\/owa\/*", "*:\/\/0.0.0.0:*\/*", "*:\/\/localhost:*\/*" ], "js": [ "assets\/js\/jquery-2.1.1.min.js", "assets\/js\/jquery.qtip.min.js", "assets\/js\/inject.js" ], "css": [ "assets\/css\/jquery.qtip.min.css" ], "run_at": "document_end" } ], "background": { "persistent": false, "scripts": [ "assets\/js\/background.js" ] }, "web_accessible_resources": [ "assets\/img\/*.png" ] } |