MemoMe

MemoMe

Contextual & persistent web page memos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Nir Elbaz",
  "name": "MemoMe",
  "description": "Contextual & persistent web page memos",
  "version": "0.9.9",
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/logo-16.png",
      "32": "images/logo-32.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "browser_style": false,
    "page": "options.html"
  },
  "icons": {
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage",
    "contextMenus"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}