Bookmark managers

Bookmark managers

An easilier way to manager your Chrome bookmark

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/welcome.js"
  },
  "action": {
    "browser_style": true,
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icon/16.png",
        "size": 16
      },
      {
        "light": "icon/32.png",
        "size": 32
      },
      {
        "light": "icon/48.png",
        "size": 48
      },
      {
        "light": "icon/64.png",
        "size": 64
      }
    ]
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png",
    "256": "icon/256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "offline_enabled": true,
  "permissions": [
    "bookmarks"
  ],
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "favicon.ico"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://bookmark-manager.freebusinessapps.net"
}