McGill Enhanced

Enhance the functionality of McGill.ca

McGill Enhanced là gì?

McGill Enhanced là một tiện ích mở rộng Chrome được phát triển bởi kozirisdev, và tính năng chính của nó là "Enhance the functionality of McGill.ca".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng McGill Enhanced

Tải xuống các tệp mở rộng McGill Enhanced dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        View a detailed list of all features at: 
https://tinyurl.com/McGillEnhancedFeatures

McGill Enhanced makes looking up courses and registration easier by providing direct access to Minerva Registration, Visual Schedule Builder, Mercury course evaluations, archived lecture recordings, Docuum, crowdsourced class averages and more, all from the course overview page. On McGill.ca pages, it adds a menu bar that lets you quickly jump to a different year's version of the given page as well as a quick links menu that you can access by clicking the McGill Enhanced icon in the chrome menu bar. It also allows for 1-click registration from Visual Schedule Builder and the ability to export your course schedule from Minerva.

This Chrome extension is free and open source. The source code can be found on github and is provided under the GNU General Public License.
McGill is a University in Montreal, Quebec Canada and has no affiliation with this software.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên McGill Enhanced McGill Enhanced
ID jlacaimkacnkhlcgapgakpklnibgfkde
URL Chính Thức https://chromewebstore.google.com/detail/mcgill-enhanced/jlacaimkacnkhlcgapgakpklnibgfkde
Mô tả Enhance the functionality of McGill.ca
Kích Thước Tệp 630 KB
Số Lần Cài Đặt 14,775
Phiên Bản Hiện Tại 4.3.37
Cập Nhật Lần Cuối 2023-10-11
Ngày Phát Hành 2020-05-17
Đánh Giá 5.00/5 Tổng số 83 Đánh Giá
Nhà Phát Triển kozirisdev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://demetrios-koziris.github.io/McGillEnhanced
URL Trang Trợ Giúp https://demetrios-koziris.github.io/McGillEnhanced/features
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "McGill Enhanced",
    "author": "kozirisdev",
    "manifest_version": 2,
    "version": "4.3.37",
    "description": "Enhance the functionality of McGill.ca",
    "permissions": [
        "storage",
        "*:\/\/*.mcgill.ca\/*",
        "*:\/\/demetrios-koziris.github.io\/*"
    ],
    "background": {
        "scripts": [
            "js\/backgroundHTTP.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "38": "images\/mcgill-128.png",
            "128": "images\/mcgill-128.png"
        },
        "default_popup": "menu\/quicklinksMenu.html",
        "default_title": "Click to view Quick Links Menu!"
    },
    "icons": {
        "128": "images\/mcgill-128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.mcgill.ca\/*",
                "*:\/\/demetrios-koziris.github.io\/*",
                "*:\/\/www.docuum.com\/*"
            ],
            "js": [
                "js\/preInit.js",
                "js\/initStyling.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.mcgill.ca\/*",
                "*:\/\/demetrios-koziris.github.io\/*",
                "*:\/\/www.docuum.com\/*"
            ],
            "js": [
                "lib\/purify.min.js",
                "lib\/jquery-3.5.1.min.js",
                "lib\/tooltipsy.min.js",
                "lib\/md5.js",
                "lib\/uuid-random.min.js",
                "lib\/fileSaver.js",
                "lib\/ics.js",
                "js\/dataDocuum.js",
                "js\/dataMercury.js",
                "js\/dataRecordings.js",
                "js\/dataClassAverages.js",
                "js\/dataCourseTitles.js",
                "js\/dataMcGillMap.js",
                "js\/addSidebar.js",
                "js\/addYearMenu.js",
                "js\/addAveCrowdsource.js",
                "js\/addProfLinks.js",
                "js\/addCourseLinks.js",
                "js\/applyToolTipsy.js",
                "js\/addCourseTitleTooltips.js",
                "js\/addScheduleExporter.js",
                "js\/addOneClickVSBRegistration.js",
                "js\/addVSBClassLinks.js",
                "js\/initEnhancement.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/sidebar.css",
        "css\/yearMenu.css",
        "css\/aveCrowdsource.css",
        "css\/profLinks.css",
        "css\/programs.css",
        "css\/vsb.css",
        "css\/minerva.css",
        "images\/*.png"
    ]
}