Examine source code of MEMO di ASSOCIAMO

Inspect and view changes in MEMO di ASSOCIAMO 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": "MEMO di ASSOCIAMO",
  "description": "Un'estensione del Browser che ti avvisa quando navighi su di un sito web con un cashback di associamo.com",
  "homepage_url": "https://www.associamo.com",
  "author": "associamo.com",
  "version": "1.0.0.10",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "cookies"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16x16.png",
      "32": "/images/32x32.png",
      "48": "/images/48x48.png",
      "128": "/images/128x128.png"
    }
  },
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "128": "/images/128x128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "checker_box.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.google.com/*",
        "https://*.google.it/*",
        "https://*.bing.com/*",
        "https://*.search.yahoo.com/*",
        "https://*.bestshopping.com/*",
        "https://*.gov.it/*",
        "https://*.sieltecloud.it/*"
      ],
      "run_at": "document_idle",
      "css": [
        "styles_box.css"
      ]
    },
    {
      "js": [
        "translations.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "jump.js"
      ],
      "matches": [
        "https://*.bestshopping.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*.google.com/*",
        "https://*.google.it/*",
        "https://*.bing.com/*",
        "https://*.search.yahoo.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "css": [
        "content_bs.css"
      ]
    },
    {
      "matches": [
        "https://www.associamo.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "login.js"
      ]
    }
  ],
  "default_locale": "it",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}