CRN Tool
Quickly copy your CRNs to register for classes at Georgia Southern University
CRN Tool란 무엇입니까?
CRN Tool은(는) http://kobitate.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly copy your CRNs to register for classes at Georgia Southern University"입니다.
확장 프로그램 스크린샷
CRN Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Source code: http://github.com/therealgitcub/crn-tool Changelog --------------------- 1.1.5 -- April 15th, 2016 • Fixed a bug where it was difficult to launch CRN Tool from within WINGS 1.1.4 -- April 15th, 2016 • Fixed a bug where the settings page would launch randomly 1.1.3 -- March 16th, 2016 • Made CRNs easier to manage • Added a status bar w/ a close button to the window • Added a settings link to the window • Made it clearer that a CRN was copied to the clipboard • Clarified some wording 1.1.2 -- March 12th, 2016 • Fixed buggy drag animation • Moved launch button from address bar to WINGS 1.1.1 -- March 12th, 2016 • Fixed an incorrect color • Updated course search screenshot on Install page 1.1.0 -- March 11th, 2016 • Added ability to add CRNs from GS Course Search • Added install page to add CRNs and introduce CRN Tool 1.0 -- March 9th, 2016 • Released
확장 프로그램 기본 정보
이름 | |
ID | ohlknoaachkmihafcfnocmdjhafikmmo |
공식 URL | https://chrome.google.com/webstore/detail/crn-tool/ohlknoaachkmihafcfnocmdjhafikmmo |
설명 | Quickly copy your CRNs to register for classes at Georgia Southern University |
파일 크기 | 602 KB |
설치 횟수 | 113 |
현재 버전 | 1.1.5 |
최근 업데이트 | 2016-04-15 |
출시 날짜 | 2016-04-15 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | http://kobitate.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CRN Tool", "description": "Quickly copy your CRNs to register for classes at Georgia Southern University", "version": "1.1.5", "options_page": "install\/index.html", "content_scripts": [ { "matches": [ "https:\/\/wings.georgiasouthern.edu\/*" ], "js": [ "lib\/jquery-2.1.4.min.js", "lib\/jquery-ui.min.js", "lib\/clipboard.min.js", "main\/main.js" ], "css": [ "lib\/material-design-iconic-font.css", "main\/main.css" ] }, { "matches": [ "https:\/\/my.georgiasouthern.edu\/courses\/*" ], "js": [ "lib\/jquery-2.1.4.min.js", "course-search\/course-search.js" ], "css": [ "course-search\/course-search.css" ] } ], "background": { "scripts": [ "main\/background.js" ] }, "permissions": [ "https:\/\/wings.georgiasouthern.edu\/*", "storage", "tabs" ], "web_accessible_resources": [ "lib\/fonts\/*", "main\/main.html", "icons\/*", "install\/index.html" ], "icons": { "128": "icons\/icon128.png" } } |