Smart Ads Finder

Smart Ads Finder

Smart Ads Finder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "512": "images/icon-512.png"
  },
  "manifest_version": 2,
  "name": "Smart Ads Finder",
  "description": "Smart Ads Finder",
  "permissions": [
    "https://www.facebook.com/*",
    "https://m.facebook.com/*"
  ],
  "version": "2.6.6",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "scripts/logging.js",
        "scripts/fw-task.js",
        "scripts/desktop-content.js",
        "scripts/smartads.insight.js"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ]
    },
    {
      "js": [
        "scripts/desktop-bootloader.js"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "scripts/logging.js",
        "scripts/fw-task.js",
        "scripts/mobile-content.js",
        "scripts/mobile-smartads.insight.js"
      ],
      "matches": [
        "https://m.facebook.com/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/icon-48.png",
      "128": "images/icon-128.png",
      "512": "images/icon-512.png"
    },
    "default_popup": "popup.html",
    "default_title": "Smart Ads Finder"
  },
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "images/*",
    "scripts/inject.js"
  ],
  "default_locale": "en"
}