UAlberta - Engineering Chart Augmenter

This extension provides course descriptions when you hover over a course on course1.html or course2.html.

UAlberta - Engineering Chart Augmenter란 무엇입니까?

UAlberta - Engineering Chart Augmenter은(는) Motiejus Osipovas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides course descriptions when you hover over a course on course1.html or course2.html."입니다.

확장 프로그램 스크린샷

screenshot

UAlberta - Engineering Chart Augmenter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Are you an Engineering Student at the University of Alberta?

Have you ever visited one of these pages:

http://www.registrar.ualberta.ca/calendar/Undergrad/Engineering/chart1.html

or

http://www.registrar.ualberta.ca/calendar/Undergrad/Engineering/chart2.html

Ever wondered what all those courses were about? Wonder no longer!

When this extension is installed a title and description will appear when you hover on a course.

New in Version 1.0.1
+ Added Titles
+ Added Descriptions for Older Courses
+ Added support for charts for the following Academic Years (2010-2011, 2011-2012, 2012-2013)
+ Now using minified Javascript and CSS (smaller extension size)

New in Version 1.0.2
+ Added new courses: MEC E 485, PHYSL 210A and PHYSL 210B
+ Added Support for charts for 2014-2015
+ Course titles are now bold
+ No more 'undefined' tooltips when hovering on Terms

New in Version 1.03 (Jan 14 2016)
+ Added support for HTTPS chart pages


Please Rate & Review. Feel free to suggest features. Send harsh and scathing feedback if you find a problem with this extension.                    

확장 프로그램 기본 정보

이름 UAlberta - Engineering Chart Augmenter UAlberta - Engineering Chart Augmenter
ID gcplnjdpndjnnpibobbjkjakjafelbne
공식 URL https://chromewebstore.google.com/detail/ualberta-engineering-char/gcplnjdpndjnnpibobbjkjakjafelbne
설명 This extension provides course descriptions when you hover over a course on course1.html or course2.html.
파일 크기 81.5 KB
설치 횟수 59
현재 버전 1.0.3
최근 업데이트 2016-01-14
출시 날짜 2016-01-14
평점 5.00/5 총 4 개의 평점
개발자 Motiejus Osipovas
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UAlberta - Engineering Chart Augmenter",
    "short_name": "UAECA",
    "description": "This extension provides course descriptions when you hover over a course on course1.html or course2.html.",
    "version": "1.0.3",
    "permissions": [
        "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/chart1.html",
        "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/chart1.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "myscript.js",
                "jquery-ui-1.10.3.custom.min.js"
            ],
            "css": [
                "jquery-ui-1.10.3.custom.min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "*.txt"
    ]
}