BoomConsole - Web Organizer & Contact Management

BoomConsole - Web Organizer & Contact Management

BoomConsole is the organizational tool to capture your online viewing experience with your description and folders.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BoomConsole - Web Organizer & Contact Management",
  "short_name": "Organize your web",
  "version": "2.5.63.2",
  "description": "BoomConsole is the organizational tool to capture your online viewing experience with your description and folders.",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "bookmarks",
    "scripting",
    "management"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentPage.js"
      ],
      "persistAcrossSessions": true
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_popup": "index.html?#/options",
    "default_title": "BoomConsole For ChatGPT"
  },
  "options_page": "index.html?#/options",
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}