UOC Notifier

UOC notifier for Google Chrome

UOC Notifier란 무엇입니까?

UOC Notifier은(는) uoc-notifier에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "UOC notifier for Google Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Get the latest news and notifications on your Chrome!

Based on UOChrome from Jorge Aguilera

These are the amazing features!

 - Autologin to UOC
 - Get the latest notifications of what is happening in the classrooms
 - Check your calendar
 - Shorthand links to some interesting parts of the website
 - Get notified about PAC dates and grades!                    

확장 프로그램 기본 정보

이름 UOC Notifier UOC Notifier
ID beiebnelcljchfoehaogncobmpelndgh
공식 URL https://chromewebstore.google.com/detail/uoc-notifier/beiebnelcljchfoehaogncobmpelndgh
설명 UOC notifier for Google Chrome
파일 크기 298 KB
설치 횟수 1,916
현재 버전 2.4.0
최근 업데이트 2022-06-13
출시 날짜 2020-02-22
평점 4.85/5 총 88 개의 평점
개발자 uoc-notifier
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/UOC-notifier/UOC-notifier-chrome
도움말 페이지 URL https://github.com/UOC-notifier/UOC-notifier-chrome/issues
개인정보 보호 정책 페이지 URL https://raw.githubusercontent.com/UOC-notifier/UOC-notifier-chrome/master/privacidad.md
지원되는 언어 en,ca,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/logo128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "__MSG_DESCRIPTION__",
    "icons": {
        "16": "img\/logo16.png",
        "32": "img\/logo32.png",
        "64": "img\/logo64.png",
        "128": "img\/logo128.png"
    },
    "default_locale": "en",
    "manifest_version": 2,
    "name": "__MSG_TITLE__",
    "options_page": "options.html",
    "permissions": [
        "*:\/\/*.uoc.edu\/*",
        "alarms",
        "idle",
        "cookies"
    ],
    "version": "2.4.0",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.uoc.edu\/*"
            ],
            "css": [
                "theme\/styles.css"
            ],
            "js": [
                "theme\/uoctheme.js"
            ]
        }
    ]
}