UC Grabber

Simple tool for UoC students to enable easier downloads from Canvas and ilykei.com portals

UC Grabber là gì?

UC Grabber là một tiện ích mở rộng Chrome được phát triển bởi https://home.uchicago.edu/~sumitk, và tính năng chính của nó là "Simple tool for UoC students to enable easier downloads from Canvas and ilykei.com portals".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng UC Grabber 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

                        This simple Chrome extension is for University of Chicago students. Specially those who frequently use canvas.uchicago.edu and/or ilykei.com portals in their courses.

By default, these websites have cumbersome steps to batch download course documents belonging to a module or set of modules. This extension enables students to easily download the course materials.

----

Changelog:

version 0.7 - released:03/31/2018

Fixed a bug that affected downloads for Time Series & Analysis course.

version 0.6 - released:03/31/2018

Disabled Easter egg.

version 0.5 - released:04/01/2018

- Fixed a bug that caused downloads failure for Machine Learning course on ilykei. A more generic standard is used now for naming the download directories.
- More security is added to prevent some hidden edge cases causing download failures.

version 0.4 - released:03/31/2018

Added an Easter egg for April Fool's Day.

version 0.3 - released:01/26/2018

Add a reload button to clear stored downloads info for a tab. This will allow user to move to another module page in the same tab and download new content.

----

version 0.2 - released:01/25/2018

1. User can now close the popup box and move to other tabs after clicking Process
2. Download buttons for a page will be cached in background (events), so user will not have to click Process button more than once
4. Error check placed for cases when content script doesn't listen to the scrape request. User will now be suggested to refresh the page.
5. Performance improvement with jQuery selection logic
6. spaces allowed in directory names                    

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

Tên UC Grabber UC Grabber
ID dimmeocemhglaadjicpnogdadmkkgpln
URL Chính Thức https://chromewebstore.google.com/detail/uc-grabber/dimmeocemhglaadjicpnogdadmkkgpln
Mô tả Simple tool for UoC students to enable easier downloads from Canvas and ilykei.com portals
Kích Thước Tệp 2.55 MB
Số Lần Cài Đặt 124
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2018-06-29
Ngày Phát Hành 2018-06-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://home.uchicago.edu/~sumitk
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UC Grabber",
    "version": "0.7",
    "short_name": "Make Canvas Great Again!",
    "description": "Simple tool for UoC students to enable easier downloads from Canvas and ilykei.com portals",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html",
        "default_title": "Grabber for uChicago Canvas!"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/canvas.uchicago.edu\/*"
            ],
            "js": [
                "scripts\/jquery-3.3.1.min.js",
                "scripts\/content_canvas.js"
            ]
        },
        {
            "matches": [
                "*:\/\/ilykei.com\/*"
            ],
            "js": [
                "scripts\/jquery-3.3.1.min.js",
                "scripts\/content_ilykei.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "downloads"
    ],
    "background": {
        "scripts": [
            "scripts\/events.js"
        ]
    }
}