Clarion - Facebook & Twitter Filter

Clarion - Facebook & Twitter Filter

Remove friends without unfollowing them. Remove unwanted and promoted tweets. Remove ads on Facebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clarion - Facebook & Twitter Filter",
  "version": "0.1.5",
  "manifest_version": 2,
  "minimum_chrome_version": "22",
  "description": "Remove friends without unfollowing them. Remove unwanted and promoted tweets. Remove ads on Facebook.",
  "browser_action": {
    "default_icon": "images/icon_19.png",
    "default_title": "Clarion",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "web_accessible_resources": [
    "images/metacert_logo.png",
    "js/jquery-2.0.3.min.map",
    "images/icon_19.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "js/jquery-2.0.3.min.js",
        "js/filtering.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "background",
    "unlimitedStorage",
    "https://api.metacert.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "html/options.html"
}