GauchoMap

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

GauchoMap란 무엇입니까?

GauchoMap은(는) Shayan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GauchoMap 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 GauchoMap GauchoMap
ID fkmnanhlngmildmikibdbgfobodglmkl
공식 URL https://chromewebstore.google.com/detail/gauchomap/fkmnanhlngmildmikibdbgfobodglmkl
설명 Automatically locates your UCSB courses on an interactive map to make finding your next class a breeze.
파일 크기 21.98 KB
설치 횟수 73
현재 버전 1.1
최근 업데이트 2016-10-05
출시 날짜 2016-10-05
평점 4.50/5 총 2 개의 평점
개발자 Shayan
이메일 [email protected]
결제 유형 free
지원되는 언어 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'"
}