AverPoint

AverPoint

AverPoint microsoft edge extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "AverPoint",
  "version": "0.0.91",
  "manifest_version": 2,
  "description": "AverPoint microsoft edge extension",
  "homepage_url": "http://averpoint.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/gray/16.png",
      "48": "icons/gray/48.png",
      "128": "icons/gray/128.png"
    },
    "default_title": "Averpoint"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "cookies",
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}