FeedArt

FeedArt

Replaces Facebook ads with Art.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FeedArt",
  "version": "0.2.1",
  "manifest_version": 2,
  "description": "Replaces Facebook ads with Art.",
  "homepage_url": "http://feedart.co/",
  "default_locale": "en",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://*.facebook.com/*",
    "https://raw.githubusercontent.com/*/adblocker-art-facebook/master/current-art.json"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "content_script/script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ]
}