Add to Bookmax - Online Bookmark Manager

Add bookmarks to your Bookmax account, an online bookmark manager to store bookmarks, lists, contacts, memos, notes and more online. FREE and PREMIUM version. It has hierarchical folders, statistics and thumbnails (premium) and many more tools.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Add to Bookmax",
  "description": "Add Bookmarks to your Bookmax Account.",
  "version": "3.2.3resigned1",
  "browser_action": {
    "default_icon": "icon-32.png"
  },
  "icons": {
    "32": "icon-32.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "add.css"
      ],
      "js": [
        "/iframe/base/jquery-3.2.1.min.js",
        "inject.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "iframe/*"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/",
    "*://my.bookmax.net/",
    "cookies"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "@bookmax-bookmarlet"
    }
  }
}