Memorize

Memorize

Help you remember terms and definitions by repeatedly reminding you a random term in your custom set using the chrome notification.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Memorize",
  "version": "1.0.1",
  "description": "Help you remember terms and definitions by repeatedly reminding you a random term in your custom set using the chrome notification.",
  "permissions": [
    "declarativeContent",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/html2canvas.js",
      "js/functions.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/ico_16.png",
    "32": "images/ico_32.png",
    "48": "images/ico_48.png",
    "128": "images/ico_128.png"
  },
  "browser_action": {
    "default_popup": "views/popup.html",
    "default_icon": {
      "16": "images/ico_16.png",
      "32": "images/ico_32.png",
      "48": "images/ico_48.png",
      "128": "images/ico_128.png"
    },
    "default_title": "Memorize"
  },
  "manifest_version": 2
}