Examine source code of Chamty.sk Pripomináčik

Inspect and view changes in Chamty.sk Pripomináčik 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
{
  "name": "Chamty.sk",
  "version": "1.0.1",
  "description": "Chamty.sk Pripomienkovač vás upozorní na cashback a zľavové kupóny priamo v obchodoch.",
  "homepage_url": "https://www.chamty.sk/",
  "author": "Chamty.sk",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "<all_urls>",
    "unlimitedStorage",
    "cookies",
    "alarms"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "chrome_style": false,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendors/bundle.js",
        "content/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "favicon.png",
    "default_title": "Chamty.sk Pripomienkovač"
  },
  "icons": {
    "16": "images/16x16.png",
    "18": "images/18x18.png",
    "32": "images/32x32.png",
    "128": "images/128x128.png"
  },
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "*.css",
    "*.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{82f464f4-b185-4203-a5bd-e7d271256a52}"
    }
  }
}