SynTek

Check your Epitech Planning from anywhere and be warned!

SynTek क्या है?

SynTek William द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check your Epitech Planning from anywhere and be warned!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SynTek एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/"
    ]
}