Stamps

Stamps

Rate and comment on any website on the internet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stamps",
  "description": "Rate and comment on any website on the internet!",
  "version": "0.2.9",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup/index.html",
    "default_title": "Stamps",
    "default_icon": "assets/img/stampn.png"
  },
  "background": {
    "service_worker": "background/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://app.stamps.network/*",
    "http://localhost:3000/*"
  ]
}