Best Reviews Guide

Best Reviews Guide

Never settle for second best products!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Roundforest",
  "name": "Best Reviews Guide",
  "description": "Never settle for second best products!",
  "version": "1.0.22",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "action": {
    "default_icon": {
      "128": "brg128.png"
    }
  },
  "icons": {
    "16": "brg16.png",
    "48": "brg48.png",
    "128": "brg128.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "react/content-script-loader.index.tsx.js"
      ],
      "matches": [
        "https://*.bestbuy.com/*",
        "https://*.walmart.com/*",
        "http://localhost:3000/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://localhost:3000/*",
        "https://*.bestbuy.com/*",
        "https://*.walmart.com/*"
      ],
      "resources": [
        "react/storage-client.js",
        "react/index.tsx.js"
      ],
      "use_dynamic_url": true
    }
  ]
}