Snap Note

Snap Note

A Chrome Extension in the form of a pop-up notepad with various functions

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Snap Note",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "A Chrome Extension in the form of a pop-up notepad with various functions",
  "author": "Daniel Hsing",
  "offline_enabled": true,
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "32": "images/note-32.png",
    "48": "images/note-48.png",
    "128": "images/note-128.png"
  },
  "browser_action": {
    "default_icon": "images/note-128.png",
    "default_title": "Snap Note",
    "default_popup": "index.html"
  },
  "permissions": [
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "index.html",
    "js/popup.js"
  ]
}