Examine source code of RealCoupon

Inspect and view changes in RealCoupon source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RealCoupon",
  "description": "Assist in discovering the true information of products and accurately matching the applicable coupons.",
  "version": "0.0.12",
  "manifest_version": 3,
  "homepage_url": "https://www.realcoupon.xyz",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArFs5V03PNRDCj4ITqHJ7Fzh9rF5bfVPau4YX0yn8iSvA4ykiHlnKOWFVzTA89nl9+HbfnpkaG/VqGCMRejS0Ffk/hCyJxvmsEs72K7hGdAD+ef4vy+IUuwDJv1tda0Ev17Y3B0MDTPjbRWygEv4MeFmQZn/+cpM/zXN2FetiOev7JNu84Mc6HSGV1/+0V+imS9itWxKbey6iD1XY09QLi8FfLQp/QdS/HmHskyw26e2/54yl2jTaDOyqZZ3wZygTGQZABX1+4kiPdbgBlRpPCab+NvGtqILAKfNDRQLH8T89rFF6Cc5J+3v0gfwNwqDuDD5eVqfQ4BmHReOi8Z8p4QIDAQAB",
  "icons": {
    "16": "./assets/icons/coupon16.png",
    "32": "./assets/icons/coupon32.png",
    "48": "./assets/icons/coupon48.png",
    "128": "./assets/icons/coupon128.png"
  },
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "webRequest",
    "identity",
    "identity.email"
  ],
  "action": {
    "default_popup": "./popup.html"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "css": [
        "css/vendor.bundle.css",
        "css/styles.bundle.css"
      ],
      "js": [
        "js/echarts.bundle.js",
        "js/vendor.bundle.js",
        "js/common.bundle.js",
        "js/20.bundle.js",
        "js/amazonPrice.bundle.js",
        "js/analysisCard.bundle.js",
        "js/asinMarking.bundle.js",
        "js/922.bundle.js",
        "js/fixedNavBar.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "js/*",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}