Flowbar - Chrome Tab Manager

Flowbar - Chrome Tab Manager

Multi-functional browser organizer & note taking tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flowbar - Chrome Tab Manager",
  "description": "Multi-functional browser organizer & note taking tool.",
  "version": "2023.5.8",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    }
  },
  "commands": {
    "save-all": {
      "suggested_key": {
        "default": "Alt+V",
        "mac": "Alt+V",
        "chromeos": "Alt+V",
        "linux": "Alt+V"
      },
      "description": "Save all tabs to general"
    },
    "open-dashboard": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B",
        "chromeos": "Alt+B",
        "linux": "Alt+B"
      },
      "description": "Open Dashboard"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:4100/*",
      "https://dev-v2app.flowbar.co/*",
      "https://app-v2.flowbar.co/*"
    ]
  }
}