Uribo-Net extension
神戸大学教務情報システム「うりぼーネット」を少し便利にする拡張機能です
Uribo-Net extension란 무엇입니까?
Uribo-Net extension은(는) nishida4u에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "神戸大学教務情報システム「うりぼーネット」を少し便利にする拡張機能です"입니다.
확장 프로그램 스크린샷
Uribo-Net extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
神戸大学教務情報システム「うりぼーネット」を少し便利にする拡張機能です。 ・自動ログオフ機能を回避できます ・シラバス検索画面で所属を選ぶためのながーいプルダウンリストを短くできます 教員向け機能: ・シラバス中の空欄に1クリックで文例を挿入できます ・過去のシラバスをインポートする際の検索条件を改善します ・授業評価アンケートの総合評価の平均点を自動計算します ・学生ポートフォリオの授業名簿で所属を集計します
확장 프로그램 기본 정보
이름 | |
ID | pdoeillkiojolpcimcffhhdpeldcfnkj |
공식 URL | https://chromewebstore.google.com/detail/uribo-net-extension/pdoeillkiojolpcimcffhhdpeldcfnkj |
설명 | 神戸大学教務情報システム「うりぼーネット」を少し便利にする拡張機能です |
파일 크기 | 58.54 KB |
설치 횟수 | 103 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2022-11-05 |
출시 날짜 | 2018-02-27 |
개발자 | nishida4u |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Uribo-Net extension", "version": "0.0.4", "description": "\u795e\u6238\u5927\u5b66\u6559\u52d9\u60c5\u5831\u30b7\u30b9\u30c6\u30e0\u300c\u3046\u308a\u307c\u30fc\u30cd\u30c3\u30c8\u300d\u3092\u5c11\u3057\u4fbf\u5229\u306b\u3059\u308b\u62e1\u5f35\u6a5f\u80fd\u3067\u3059", "author": "Takeshi Nishida", "homepage_url": "https:\/\/github.com\/takeshi-nishida\/uribo-net-extension", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "16": "icons\/icon16.png" }, "browser_action": { "default_icon": { "32": "icons\/icon32.png", "16": "icons\/icon16.png" }, "default_title": "\u3046\u308a\u307c\u30fc\u306d\u3063\u3068\u3092\u958b\u304f" }, "content_scripts": [ { "matches": [ "https:\/\/kym22-web.ofc.kobe-u.ac.jp\/campusweb\/*" ], "js": [ "jquery.js", "all.js" ] }, { "matches": [ "https:\/\/kym22-web.ofc.kobe-u.ac.jp\/campusweb\/campussquare.do?*" ], "js": [ "jquery.js", "syllabus.js", "enquete.js", "roster.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage" ] } |