TOTAepe: Learning Assistant

TOTAepe: Learning Assistant

Learning time management assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "short_name": "__MSG_app_name_short__",
  "description": "__MSG_app_desc__",
  "default_locale": "pt_BR",
  "version": "17",
  "manifest_version": 2,
  "author": "TOTAepe",
  "homepage_url": "https://totaepe.wixsite.com/totaepe",
  "offline_enabled": true,
  "permissions": [
    "tabs",
    "alarms",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "browser_action": {
    "default_title": "TOTAepe",
    "default_icon": "images/browser-action.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "modules/chunk-common.js",
      "modules/chunk-vendors.js",
      "modules/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://www.netflix.com/*"
      ],
      "js": [
        "modules/youtube.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://totaepe.local/*",
      "*://content.totaepe.global/*"
    ]
  },
  "options_page": "modules/options.html",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "minimum_chrome_version": "55",
  "content_security_policy": "script-src 'self'; object-src 'self'"
}