Comfortable PandA
Comfortable PandA is a Web browser extension for managing assignments and quizzes on PandA.
Comfortable PandA란 무엇입니까?
Comfortable PandA은(는) das08에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Comfortable PandA is a Web browser extension for managing assignments and quizzes on PandA."입니다.
확장 프로그램 스크린샷
Comfortable PandA 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PandAを見やすくするための拡張機能です。提出期限までの時間に応じて各サイトのタブに色が付きます。新たに追加された課題があるときにはタブの左上に通知バッジを表示します。 また、PandA上に追加された右上の[☰]ボタンから課題一覧とテスト・クイズ一覧を確認することができます。 This is a Chrome Extension that enables PandA users to easily check new assignments, find notifications, and so on. Lecture tab with published assignments will be colored with either red, yellow, or green according with until due date. Notification badge will be used to notify users if a new assignment is published.
확장 프로그램 기본 정보
이름 | Comfortable PandA |
ID | cecjhdkagakhonnmddjgncmdldmppnoe |
공식 URL | https://chromewebstore.google.com/detail/comfortable-panda/cecjhdkagakhonnmddjgncmdldmppnoe |
설명 | Comfortable PandA is a Web browser extension for managing assignments and quizzes on PandA. |
파일 크기 | 1.32 MB |
설치 횟수 | 6,759 |
현재 버전 | 5.2.1 |
최근 업데이트 | 2023-12-17 |
출시 날짜 | 2020-08-17 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | das08 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cpanda.das82.com/ |
도움말 페이지 URL | https://cpanda.das82.com/ |
개인정보 보호 정책 페이지 URL | https://cpanda.das82.com/privacy.html |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comfortable PandA", "description": "__MSG_EXTENSION_DESCRIPTION__", "version": "5.2.1", "manifest_version": 3, "default_locale": "ja", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "action": { "default_title": "Comfortable PandA", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "content_script.js" ], "css": [ "css\/comfortable-sakai.css" ], "matches": [ "https:\/\/panda.ecs.kyoto-u.ac.jp\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "css\/comfortable-sakai.css", "img\/logo.png", "img\/noAssignment.png", "img\/miniSakaiBtn.png", "img\/closeBtn.svg" ], "matches": [ "https:\/\/panda.ecs.kyoto-u.ac.jp\/*" ] } ] } |