ADST Anti XSS Protection

ADST Anti XSS Protection

A tool for protecting you from reflected type of cross site scripting attacks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ADST Anti XSS Protection",
  "description": "A tool for protecting you from reflected type of cross site scripting attacks",
  "author": "Alireza Akhtari",
  "manifest_version": 2,
  "version": "0.1",
  "background": {
    "scripts": [
      "jquery.js",
      "protect.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "img/icon-32.png",
      "128": "img/icon-128.png"
    },
    "default_title": "XSS protection",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "img/icon-32.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ]
}