INFO 5303 fake location extension

INFO 5303 fake location extension

fake user location

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "INFO 5303 fake location extension",
  "description": "fake user location",
  "version": "0.21",
  "manifest_version": 2,
  "icons": {
    "16": "icons/logo1.png",
    "128": "icons/logo1.png"
  },
  "browser_action": {
    "default_icon": "icons/logo1.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "icons/logo1.png"
  ],
  "permissions": [
    "declarativeContent",
    "identity",
    "notifications",
    "webNavigation",
    "storage",
    "geolocation",
    "http://*/",
    "https://*/",
    "http://127.0.0.1:8000/"
  ],
  "background": {
    "scripts": [
      "background-bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-bundle.js"
      ],
      "run_at": "document_start"
    }
  ]
}