Lasso Affiliate Link Tool

Lasso Affiliate Link Tool

Analyze the affiliate networks, programs, and links present on any webpage. Reverse engineer your competitors income streams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lasso Affiliate Link Tool",
  "version": "0.1.0",
  "description": "Analyze the affiliate networks, programs, and links present on any webpage. Reverse engineer your competitors income streams.",
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "128": "/images/icons/lasso-icon-128.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_popup": "/pages/popup.html",
    "default_icon": {
      "128": "/images/icons/lasso-icon-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/amazon-associates-domains.json",
        "assets/affiliates.json",
        "assets/impact-domains.json",
        "assets/social.json",
        "images/loading.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ]
}