friGate3

friGate3

Advanced proxy management

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_chrome_extension_name__",
  "short_name": "__MSG_chrome_extension_sname__",
  "description": "__MSG_chrome_extension_description__",
  "default_locale": "en",
  "version": "3.0.25",
  "options_page": "/html/options.html",
  "icons": {
    "16": "im/ico/16.png",
    "48": "im/ico/48.png",
    "128": "im/ico/128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [],
  "background": {
    "scripts": [
      "js/init.js",
      "js/lib/md5.js",
      "js/lib/ls.js",
      "js/lib/localdata.min.js",
      "js/lib/lib.js",
      "js/proxy.js",
      "js/bg.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [],
  "permissions": [
    "identity",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "tabs",
    "proxy",
    "alarms",
    "idle",
    "background",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_browser_action_title__",
    "default_icon": {
      "19": "im/ico/38g.png",
      "38": "im/ico/38g.png"
    },
    "default_popup": "/html/popup.html"
  }
}