WebRTC Leak Prevent Toggle

WebRTC Leak Prevent Toggle

Toggle WebRTC leak prevention using the official API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebRTC Leak Prevent Toggle",
  "version": "1.0.14",
  "description": "Toggle WebRTC leak prevention using the official API.",
  "icons": {
    "128": "/img/icon128.png"
  },
  "browser_action": {
    "default_icon": "/img/icon32_off.png",
    "default_title": "WebRTC Leak Prevent Toggle"
  },
  "options_ui": {
    "page": "/html/options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "minimum_chrome_version": "42",
  "permissions": [
    "privacy",
    "storage"
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  }
}