BriskNote: New Tab Notes that Sync across Devices

BriskNote: New Tab Notes that Sync across Devices

Take notes on any new browser tab and sync them with your phone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BriskNote: New Tab Notes that Sync across Devices",
  "description": "Take notes on any new browser tab and sync them with your phone",
  "version": "0.4",
  "version_name": "0.4",
  "icons": {
    "16": "static/media/bn-icon-black-16x16-browser-manifest.png",
    "48": "static/media/bn-icon-black-48x48-browser-manifest.png",
    "128": "static/media/bn-icon-black-128x128-browser-manifest.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "BriskNote: New Tab Notes",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "static/media/bn-icon-black-16x16-browser-manifest.png",
      "24": "static/media/bn-icon-black-24x24-browser-manifest.png",
      "32": "static/media/bn-icon-black-32x32-browser-manifest.png",
      "48": "static/media/bn-icon-black-48x48-browser-manifest.png",
      "64": "static/media/bn-icon-black-64x64-browser-manifest.png",
      "128": "static/media/bn-icon-black-128x128-browser-manifest.png"
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "optional_permissions": [
    "cookies",
    "topSites"
  ],
  "optional_host_permissions": [
    "https://db.brisknote.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://api.brisknote.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "https://api.brisknote.com/*"
      ]
    }
  ]
}