SynTek
Check your Epitech Planning from anywhere and be warned!
Τι είναι το SynTek;
Το SynTek είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον William, και η κύρια λειτουργία του είναι "Check your Epitech Planning from anywhere and be warned!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SynTek
Λήψη αρχείων επέκτασης SynTek σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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\/" ] } |