WebNote

WebNote

Displays a popup where you can add notes for your web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebNote",
  "description": "Displays a popup where you can add notes for your web pages",
  "version": "2.0",
  "permissions": [
    "desktopCapture",
    "storage",
    "tabs",
    "tabCapture",
    "activeTab",
    "identity"
  ],
  "browser_action": {
    "default_icon": "icons/webnote.png",
    "default_title": "Take a Note",
    "default_popup": "popup/view/panel.html"
  },
  "background": {
    "scripts": [
      "background/background.common.js",
      "background/background.js",
      "background/background.desktopCapture.js",
      "background/background.messaging.js",
      "background/background.players.js",
      "RecordRTC/MediaStreamRecorder.js",
      "RecordRTC/MultiStreamRecorder.js",
      "RecordRTC/DiskStorage.js"
    ],
    "persistent": false
  }
}