Add to Bookmark Ninja

Adds the current web page to Bookmark Ninja
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add to Bookmark Ninja",
  "description": "Adds the current web page to Bookmark Ninja",
  "version": "3.0.0.0",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "system.display",
    "notifications"
  ],
  "background": {
    "service_worker": "add-bookmark.js",
    "type": "module"
  },
  "icons": {
    "16": "ninjaplus16.png",
    "48": "ninjaplus48.png",
    "128": "ninjaplus128.png"
  },
  "action": {
    "default_title": "Add to Ninja",
    "default_icon": {
      "16": "ninjaplus16.png",
      "32": "ninjaplus32.png",
      "48": "ninjaplus48.png",
      "128": "ninjaplus128.png"
    }
  }
}