Cenafy Pro

Cenafy Pro

Choose the odds of summoning John Cena while browsing the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cenafy Pro",
  "version": "1.1",
  "description": "Choose the odds of summoning John Cena while browsing the web",
  "options_page": "options.html",
  "icons": {
    "48": "icons/cena48.png",
    "96": "icons/cena96.png"
  },
  "background": {
    "service_worker": "back.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}