SynTek
Check your Epitech Planning from anywhere and be warned!
SynTek란 무엇입니까?
SynTek은(는) William에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check your Epitech Planning from anywhere and be warned!"입니다.
확장 프로그램 스크린샷
SynTek 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
What's new in this version ? - Fix bug when you can't click on the grey part of an event - Add smooth transitions for backgrounds - Add some settings, you can new pick a new background or save it, you can also change the time when the notifications begin before an event. (by default, it's 15 minutes before an event) - Add a search box similar to the default new tab page on Google Chrome - Add a top left button to go to intra.epitech.eu ------------------------------ With this extension, you can check your Epitech Planning from anywhere with a little icon in the top bar and whenever you open a new tab, you'll see your next events so you can never miss them ! Furthermore, you'll be alerted when an event has almost started. ------------------------------ How to use ? If you're already logged in https://intra.epitech.eu/ the extension will works immediately. You just have to go to the extensions options and change the autologin link, you can find it on the intranet. Watch the video if you're still lost.
확장 프로그램 기본 정보
이름 | SynTek |
ID | enafhfdfnfbmhafbbfekhlehkdaedime |
공식 URL | https://chromewebstore.google.com/detail/syntek/enafhfdfnfbmhafbbfekhlehkdaedime |
설명 | Check your Epitech Planning from anywhere and be warned! |
파일 크기 | 9.06 MB |
설치 횟수 | 81 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2020-06-23 |
출시 날짜 | 2020-06-23 |
평점 | 4.25/5 총 4 개의 평점 |
개발자 | William |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://intra.epitech.eu/ |
도움말 페이지 URL | https://william-gaudfrin.fr/ |
지원되는 언어 | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "William GAUDFRIN", "manifest_version": 2, "name": "SynTek", "version": "0.2.0", "description": "Check your Epitech Planning from anywhere and be warned!", "background": { "scripts": [ "sync.js" ] }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "64": "icons\/icon-64.png" }, "browser_action": { "browser_style": true, "default_popup": "popup\/show_events.html", "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "64": "icons\/icon-64.png" } }, "chrome_url_overrides": { "newtab": "new_tab\/new_tab.html" }, "content_scripts": [ { "matches": [ "https:\/\/intra.epitech.eu\/planning*" ], "js": [ "sync.js" ] } ], "options_ui": { "page": "options\/options.html" }, "permissions": [ "storage", "tabs", "alarms", "notifications", "https:\/\/intra.epitech.eu\/" ] } |