GauchoMap

Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.

GauchoMap là gì?

GauchoMap là một tiện ích mở rộng Chrome được phát triển bởi Shayan, và tính năng chính của nó là "Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.".

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

screenshot
screenshot

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

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

                        New in version 1.1: Made the "Open Map" button and in-app disclaimer nicer.

GauchoMap is a Chrome extension made for UCSB students. It attempts to automatically locate all of your UCSB courses as they appear on UCSB GOLD in an interactive map to streamline the process of beginning your next quarter.

Features:

- Adds a new "Open Map" button to UCSB GOLD on the "My Class Schedule" page.
- Pinpoints your UC Santa Barbara courses on a Google Map.
- Filters your courses by day of the week.
- Quick link to the Geography Department's interactive map.
- Clicking on pins opens a detailed view of your classes.
- Pin label displays the number of courses you have at a particular location.
- Works with previous quarters!

Known issues:

- You may be asked to take a swim if GauchoMap can't find your course (Let me know which buildings produce errors so I can fix them).
- Courses in the info boxes don't get filtered by day of the week.


Icon obtained from commons.wikimedia.org under the Creative Commons Attribution-Share Alike 3.0 Unported license.                    

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

Tên GauchoMap GauchoMap
ID fkmnanhlngmildmikibdbgfobodglmkl
URL Chính Thức https://chromewebstore.google.com/detail/gauchomap/fkmnanhlngmildmikibdbgfobodglmkl
Mô tả Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.
Kích Thước Tệp 21.98 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-10-05
Ngày Phát Hành 2016-10-05
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Shayan
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1",
    "name": "GauchoMap",
    "description": "Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "author": "Shayan Sadigh",
    "background": {
        "persistent": false,
        "scripts": [
            "eventPage.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "main.js"
            ],
            "matches": [
                "https:\/\/my.sa.ucsb.edu\/gold\/StudentSchedule.aspx"
            ]
        }
    ],
    "permissions": [
        "https:\/\/maps.googleapis.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com; object-src 'self'"
}