AntiBan

AntiBan

Avoid be BANNED from Ovelhas

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AntiBan",
  "short_name": "AntiBan",
  "description": "__MSG_extensionDescription__",
  "author": "Mário Valney",
  "version": "1.2.1",
  "default_locale": "pt_BR",
  "browser_action": {
    "default_icon": {
      "19": "icon-19.png",
      "38": "icon-38.png"
    },
    "default_title": "__MSG_extensionDefaultTitle__",
    "default_popup": "options.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "declarativeContent",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "assets/img/sheep.png",
    "assets/img/sheep-sad.png",
    "assets/img/sheep-happy.png"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/antiban.js"
      ],
      "css": [
        "assets/antiban.css"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    }
  ]
}