TeadoosPxy

TeadoosPxy

A small proxy extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TeadoosPxy",
  "description": "A small proxy extension",
  "version": "0.2.8",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "./img/icon16.png",
    "48": "./img/icon48.png",
    "128": "./img/icon128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "proxy",
    "notifications"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}