Apopou Reminder

Apopou Reminder

Αυτόματη υπενθύμιση για διαθέσιμo cashback. Το Αpopou reminder σας υπενθυμίζει ότι μπορείτε να λαβετε επιστροφή χρημάτων…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Apopou Reminder",
  "version": "4.3",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "img/favicon.png",
    "48": "img/favicon.png",
    "128": "img/favicon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "cookies",
    "tabs"
  ],
  "host_permissions": [
    "https://apopou.gr/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "https://apopou.gr/"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}