Examine source code of ПарашутOff - захист від відстеження

Inspect and view changes in ПарашутOff - захист від відстеження 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": "__MSG_addon_name__",
  "short_name": "ПарашутOff",
  "author": "Lorana",
  "description": "__MSG_addon_description__",
  "default_locale": "en",
  "minimum_chrome_version": "41",
  "version": "0.0.2",
  "options_page": "html/options.html",
  "incognito": "spanning",
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/off_32.png",
      "64": "icons/off_64.png",
      "128": "icons/off_128.png",
      "256": "icons/off_256.png"
    },
    "default_title": "ПарашутOff | Захист від відстеження",
    "default_popup": "html/report.html",
    "browser_style": false
  },
  "commands": {
    "ToggleTraceWeb": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Перемкнути веб-контролер"
    },
    "PauseTrace": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Призупинити ПарашутOff"
    },
    "OpenTraceSettings": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Відкрити інформаційну панель"
    }
  },
  "icons": {
    "32": "icons/off_32.png",
    "64": "icons/off_64.png",
    "128": "icons/off_128.png",
    "256": "icons/off_256.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "notifications",
    "privacy",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/libraries/cookieparse.js",
      "js/libraries/jquery.js",
      "js/common/data.js",
      "js/common/shared.js",
      "js/background/alarms.js",
      "js/background/background.js",
      "js/background/headers.js",
      "js/background/prefs.js",
      "js/background/session.js",
      "js/background/simple.js",
      "js/background/stats.js",
      "js/background/tabs.js",
      "js/background/vars.js",
      "js/background/web.js",
      "js/background/whitelist.js",
      "js/background/trace.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/contentscript/page.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": false,
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/contentscript/loaded.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "html/blocked.html",
    "js/pages/blocked.js",
    "js/common/ux.js",
    "js/common/shared.js",
    "js/libraries/jquery.js"
  ],
  "content_security_policy": "default-src 'none'; style-src 'unsafe-inline'; object-src 'self'; script-src 'self'; connect-src https://absolutedouble.co.uk https://trace-extension.absolutedouble.co.uk https://raw.githubusercontent.com",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}