Examine source code of Mini Proxy

Inspect and view changes in Mini Proxy source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Mini Proxy",
  "version": "0.5.3.1",
  "author": "Maxim Maksovich",
  "homepage_url": "https://vk.com/maksowich",
  "description": "Расширение для доступа к выбранным вами сайтам через прокси.",
  "icons": {
    "16": "data/icon/256.svg",
    "32": "data/icon/256.svg",
    "48": "data/icon/256.svg",
    "64": "data/icon/256.svg",
    "128": "data/icon/256.svg",
    "256": "data/icon/256.svg"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "@mini-proxy",
      "strict_min_version": "91.1.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "popup.html?2",
    "open_in_tab": true
  },
  "browser_action": {
    "default_title": "Mini Proxy",
    "default_popup": "popup.html",
    "browser_style": false,
    "default_icon": "data/icon/256.svg"
  },
  "permissions": [
    "<all_urls>",
    "proxy",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ]
}