BLUF

BLUF

Stop wasting time on irrelevant information, get to the point using the power of AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BLUF",
  "description": "Stop wasting time on irrelevant information, get to the point using the power of AI.",
  "version": "1.0.3",
  "manifest_version": 3,
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "assets/logo/background-square-16.png",
    "32": "assets/logo/background-square-32.png",
    "128": "assets/logo/[email protected]"
  },
  "action": {
    "default_icon": {
      "16": "assets/logo/background-square-16.png",
      "32": "assets/logo/background-square-32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "*.css",
        "*.png",
        "*.ttf",
        "*.eot",
        "*.woff",
        "*.woff2"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.bluf.ai/*"
    ]
  }
}