Simple In-Browser Database (SIBD)

Simple In-Browser Database (SIBD)

Save any key-value pairs within your Chrome and make them handy anytime.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simple In-Browser Database (SIBD)",
  "version": "1.1",
  "description": "Save any key-value pairs within your Chrome and make them handy anytime.",
  "minimum_chrome_version": "116",
  "action": {
    "default_title": "Open SIBD"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "side_panel": {
    "default_path": "sidepanel.html",
    "openPanelOnActionClick": true
  },
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      },
      "description": "Open The Simple In-Browser Database Sidepanel"
    }
  },
  "permissions": [
    "sidePanel",
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}