Examine source code of Location Guard

Inspect and view changes in Location Guard 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Location Guard",
  "description": "Hide your geographic location from websites.",
  "author": "Kostas Chatzikokolakis",
  "icons": {
    "16": "images/pin_16.png",
    "32": "images/pin_32.png",
    "64": "images/pin_64.png",
    "128": "images/pin_128.png"
  },
  "version": "2.5.0",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "js/common.js",
      "js/main.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "16": "images/pin_16.png",
      "19": "images/pin_19.png",
      "20": "images/pin_20.png",
      "32": "images/pin_32.png",
      "38": "images/pin_38.png",
      "40": "images/pin_40.png",
      "64": "images/pin_64.png"
    },
    "default_popup": "popup.html",
    "default_title": "Location Guard"
  },
  "content_scripts": [
    {
      "js": [
        "js/common.js",
        "js/content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}