Wector Chrome Extension

Wector Chrome Extension

The quickest way to know where places are. Just highlight them!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wector Chrome Extension",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "The quickest way to know where places are. Just highlight them!",
  "author": "khaaliDimaag",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content_script.js",
        "jquery-1.11.3.min.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "logo48w.png"
  ],
  "short_name": "Wector",
  "offline_enabled": false
}