AdSaver

AdSaver

Your one stop for all your Ad research, competition analysis and facebook advertising needs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AdSaver",
  "description": "Your one stop for all your Ad research, competition analysis and facebook advertising needs",
  "version": "2.1",
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/"
      ],
      "js": [
        "config.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "logo64.png",
    "default_popup": "popup.html",
    "default_title": "AdSaver"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "config.js",
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "star.png",
    "star2.png",
    "config.js"
  ],
  "icons": {
    "16": "logo64.png",
    "48": "logo64.png",
    "64": "logo64.png",
    "128": "logo64.png"
  }
}