AdspenGO

AdspenGO

AdspenGO is a quality of life and productivity improvement for affiliate marketers. The extension removes the need for them to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "AdspenGO",
  "name": "AdspenGO",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "logo192.png",
    "default_title": "AdspenGO"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "web_accessible_resources": [
    "index.html"
  ],
  "start_url": ".",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff"
}