SynTek

Check your Epitech Planning from anywhere and be warned!

什么是SynTek?

SynTek是由William开发的Chrome扩展程序,该扩展的主要功能是“Check your Epitech Planning from anywhere and be warned!”。

扩展截图

screenshot
screenshot

下载SynTek扩展crx文件

下载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 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\/"
    ]
}