Bezly

Bezly

This is a review summarizer extension which will give you a shot and clean summary of review of any amazon product

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bezly",
  "version": "0.0.2",
  "description": "This is a review summarizer extension which will give you a shot and clean summary of review of any amazon product",
  "action": {
    "default_title": "Bezly | The Ultimate Amazon Review Summarizer",
    "default_popup": "index.html",
    "default_icon": {
      "16": "imgs/16x16.png",
      "32": "imgs/32x32.png",
      "48": "imgs/48x48.png",
      "128": "imgs/128x128.png"
    }
  },
  "manifest_version": 3,
  "icons": {
    "16": "imgs/16x16.png",
    "32": "imgs/32x32.png",
    "48": "imgs/48x48.png",
    "128": "imgs/128x128.png"
  },
  "host_permissions": [
    "https://api.bezly.xyz/*",
    "https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.js"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./js/content.js"
      ]
    }
  ]
}