Affilitizer

Affilitizer

Affilitizer highlights advertisers with affiliate programs within Google Search result pages and in the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Affilitizer",
  "version": "2.0.17",
  "description": "__MSG_extension_description__",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://box.affilitizer.com/*"
  ],
  "default_locale": "en",
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "http://www.*.*/*",
        "https://www.*.*/*"
      ],
      "css": [
        "css/tailwind-output.css"
      ],
      "js": [
        "js/md5.js",
        "js/affilitizer.js",
        "js/popup_helper.js",
        "js/google_parser.js",
        "js/affiliate_checker.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/inactive.png"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png"
  },
  "offline_enabled": false,
  "manifest_version": 3
}