Newsfeed Ad Finder

Newsfeed Ad Finder

Highlight Ads on Facebook™ newsfeed. Super fast, no interuption, the best choice for ad researchers and publishers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "*://*.facebook.com/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/content/facebook-timeline.js"
      ],
      "css": [
        "css/facebook-ads.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "icons/19.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "web_accessible_resources": [
    "css/*",
    "js/*"
  ],
  "version": "1.0.1",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}