Bardo AI Summarizer 🤖

Bardo AI Summarizer 🤖

Bardo is a simple extension that allows you to summarize and get most common words in any text in several languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bardo AI Summarizer 🤖",
  "description": "Bardo is a simple extension that allows you to summarize and get most common words in any text in several languages.",
  "version": "0.0.3",
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}