Notesapp

Notesapp

Create and save notes with Chrome Extension on New Tab.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notesapp",
  "short_name": "NotesApp",
  "description": "Create and save notes with Chrome Extension on New Tab.",
  "version": "1.21.917",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab/newtab.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_title": "NotesApp"
  },
  "background": {
    "page": "background/index.html"
  },
  "permissions": [
    "*://*.notesapptab-api.info/*",
    "cookies",
    "topSites",
    "contextMenus",
    "storage",
    "tabs",
    "alarms"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "/icons/16.png",
    "/newtab/index.html"
  ]
}