PowerNotes Research

PowerNotes Research

PowerNotes is a productivity tool that allows you to gather, organize, and track internet research easily and efficiently.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PowerNotes Research",
  "description": "PowerNotes is a productivity tool that allows you to gather, organize, and track internet research easily and efficiently.",
  "version": "0.85.9",
  "version_name": "0.85.9",
  "browser_action": {
    "default_icon": "img/icon-19.png",
    "default_popup": "popup.html",
    "default_title": "PowerNotes Research"
  },
  "background": {
    "page": "background.html"
  },
  "commands": {
    "toggle-sidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      },
      "description": "Toggle sidebar"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/common.js",
        "js/ContentScript.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/Sidebar.js"
      ],
      "match_about_blank": true
    }
  ],
  "options_ui": {
    "browser_style": false,
    "open_in_tab": true,
    "page": "settings.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "background",
    "https://*/",
    "http://*/",
    "activeTab",
    "fileBrowserHandler",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "webNavigation",
    "clipboardWrite",
    "contextMenus"
  ],
  "storage": {
    "managed_schema": "content/preferences_schema.json"
  },
  "web_accessible_resources": [
    "css/*.*",
    "fonts/*.*",
    "img/*.*",
    "content/web/viewer.html",
    "http:/*",
    "https:/*",
    "ftp:/*",
    "file:/*",
    "chrome-extension:/*",
    "blob:*",
    "data:*",
    "filesystem:/*",
    "drive:*",
    "js/WebComponents.js",
    "sidebar.html"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}