Briefy - Webpage, Text, YouTube, PDF Summary With Visual Views

Briefy - Webpage, Text, YouTube, PDF Summary With Visual Views

Summarize any webpage, email, YouTube video, and PDF in 1 click, build your knowledge base, and chat with it just like with a human.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.1",
  "name": "Briefy - Webpage, Text, YouTube, PDF Summary With Visual Views",
  "short_name": "Briefy",
  "description": "Summarize any webpage, email, YouTube video, and PDF in 1 click, build your knowledge base, and chat with it just like with a human.",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "homepage_url": "https://briefy.ai",
  "incognito": "not_allowed",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.tsx-loader.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "css": [
        "fonts.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/*",
        "images/*",
        "icons/*",
        "fonts/*",
        "fonts.css"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/NoContentNotice.js",
        "assets/common.js",
        "assets/api.js",
        "assets/content.tsx.js"
      ],
      "use_dynamic_url": true
    }
  ]
}