Rakuten: Get Cash Back For Shopping

Rakuten: Get Cash Back For Shopping

The best coupons and the most Cash Back. We do all the work. You just shop and save. Earn Cash Back at 3,500 stores today!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "short_name": "Rakuten",
  "version": "5.40.0",
  "homepage_url": "https://www.rakuten.com/",
  "author": "Rakuten",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "<all_urls>",
    "cookies",
    "alarms"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://*.rakuten.com/*",
        "https://*.rakuten.co.uk/*"
      ],
      "js": [
        "libs/snippet.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "16": "img/rakuten/icon-32.png",
      "32": "img/rakuten/icon-32.png"
    },
    "default_title": "Rakuten: Get Cash Back For Shopping"
  },
  "icons": {
    "16": "img/icon/icon-32.png",
    "48": "img/icon/icon-64.png",
    "128": "img/icon/icon-128.png"
  },
  "web_accessible_resources": [
    "workers/*.js",
    "content/*.css",
    "fonts/*.css",
    "fonts/*.woff",
    "fonts/*.woff2",
    "fonts/*.ttf",
    "fonts/*.otf",
    "serp/*.css",
    "img/*"
  ]
}