Page Pad : Make quick notes

Page Pad : Make quick notes

Create notes instantly for individual webpages while browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Page Pad : Make quick notes",
  "description": "Create notes instantly for individual webpages while browsing the web.",
  "author": "Parth Bhardwaj",
  "version": "2.0.3",
  "content_security_policy": "script-src 'self' https://plausible.io/js/script.js; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "/img/logo.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space",
        "chromeos": "Ctrl+Shift+Space",
        "linux": "Ctrl+Shift+Space"
      }
    }
  },
  "permissions": [
    "tabs"
  ]
}