Chrome Notes

Chrome Notes

Copy selected text to your notes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Notes",
  "description": "Copy selected text to your notes",
  "version": "1.19",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "match": [
      "<all>"
    ]
  },
  "browser_action": {},
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "downloads"
  ],
  "options_page": "notes.html",
  "web_accessible_resources": [
    "notes.html"
  ]
}