Girracount Extension
The chrome extension for Girraween Countdown
Girracount Extension란 무엇입니까?
Girracount Extension은(는) girraweencountdown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The chrome extension for Girraween Countdown"입니다.
확장 프로그램 스크린샷
Girracount Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension stops the need for you having the girraween countdown tab open all the time. The icon will change to show the time until the end of the lesson, and you can click the icon to see the classes you have for the day. Note: this extension is now outdated. Please use the Class Countdown extension instead: https://chrome.google.com/webstore/detail/class-countdown-extension/lompgalcaddbggjgbmicgimelihccdpe
확장 프로그램 기본 정보
이름 | Girracount Extension |
ID | hapgddgmandfoofcaijpnlmeemamjeeo |
공식 URL | https://chromewebstore.google.com/detail/girracount-extension/hapgddgmandfoofcaijpnlmeemamjeeo |
설명 | The chrome extension for Girraween Countdown |
파일 크기 | 814 KB |
설치 횟수 | 579 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2021-08-02 |
출시 날짜 | 2020-06-28 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | girraweencountdown |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Girracount Extension", "description": "The chrome extension for Girraween Countdown", "version": "0.1.6", "background": { "scripts": [ "www\/dist\/background.js" ] }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/apis.google.com; object-src 'self'; connect-src 'self' wss:\/\/*.firebaseio.com;", "browser_action": { "default_title": "Girracount", "default_popup": "www\/popup.html", "default_icon": { "16": "img\/favicon16.png", "32": "img\/favicon32.png", "48": "img\/favicon48.png", "128": "img\/favicon128.png", "512": "img\/favicon512.png" } }, "icons": { "16": "img\/favicon16.png", "32": "img\/favicon32.png", "48": "img\/favicon48.png", "128": "img\/favicon128.png", "512": "img\/favicon512.png" }, "content_scripts": [ { "matches": [ "https:\/\/girraween-countdown.firebaseapp.com\/*" ], "js": [ "www\/dist\/timetablepuller.js" ] } ] } |