NoteTab - Notepad in the Homepage

NoteTab - Notepad in the Homepage

Entire New Tab is a notepad for your remarks. Make different notes right in the New Tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.1",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "tabs",
    "notifications",
    "alarms",
    "https://sshot.org/*",
    "chrome://favicon/*"
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://notetab.li/assets/img/128.png",
      "is_default": true,
      "keyword": "NoteTab",
      "name": "NoteTab",
      "search_url": "https://notetab.li/search?q={searchTerms}"
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}