Social Ad Peek

Social Ad Peek

See your competition's social ads with just 1 click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Social Ad Peek",
  "short_name": "Social Ad Peek",
  "description": "See your competition's social ads with just 1 click.",
  "version": "0.1.2",
  "icons": {
    "16": "icons/logo_16.png",
    "48": "icons/logo_48.png",
    "128": "icons/logo_128x128.png"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*.facebook.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Social Add Peek",
    "default_icon": {
      "16": "icons/logo_16.png",
      "48": "icons/logo_48.png",
      "128": "icons/logo_128x128.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}