Volley extension

Volley extension

Volley lets you give fast, easy feedback for your website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Volley extension",
  "description": "Volley lets you give fast, easy feedback for your website.",
  "version": "1.1.36",
  "permissions": [
    "tabs",
    "activeTab",
    "tabCapture",
    "cookies",
    "storage",
    "desktopCapture",
    "*://*.meetvolley.com/"
  ],
  "web_accessible_resources": [
    "static/**/*",
    "mic.html",
    "mic.js"
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "main.js"
      ],
      "css": [
        "static/css/main.css"
      ],
      "run_at": "document_start"
    }
  ]
}