Forget Me Not

Forget Me Not

A Simple reminder to help anyone needing to organize their timetable. Especially aimed at Uni/School students Sourced Code can be…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Forget Me Not",
  "version": "1.0",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "browsingData",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/functions.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/functions.js",
      "js/background.js"
    ]
  },
  "icons": {
    "16": "icons/favicon_16.png",
    "32": "icons/favicon_32.png",
    "64": "icons/favicon.png"
  },
  "browser_action": {
    "default_title": "Forget Me Not",
    "default_icon": "icons/favicon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "icons/*",
    "images/*"
  ]
}