Notebook

Notebook

Create notes from websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Notebook",
  "description": "Create notes from websites.",
  "version": "0.0.1",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Notebook"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/jquery-3.5.0.min.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/add.png",
    "styles/style.css"
  ],
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com; object-src 'self'"
}