GM Proxy

GM Proxy

Usa maps.google.es como un proxy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GM Proxy",
  "description": "Usa maps.google.es como un proxy",
  "version": "1.1",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "http://maps.google.es/gwt/x"
  ],
  "icons": {
    "16": "ico16.png",
    "48": "ico48.png",
    "128": "ico128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://maps.google.es/gwt/x"
      ],
      "css": [
        "inject.css"
      ]
    },
    {
      "exclude_matches": [
        "http://maps.google.es/gwt/*x?u=http*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_end"
    }
  ]
}