SynTek

SynTek

Check your Epitech Planning from anywhere and be warned!

Merlin
Additional files are visible only to premium users

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