Netwoof V3 - Toolbox

Netwoof V3 - Toolbox

Netwoof toolbox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netwoof V3 - Toolbox",
  "description": "Netwoof toolbox",
  "version": "5.0.4",
  "manifest_version": 2,
  "icons": {
    "16": "./img/icon-16.png",
    "32": "./img/icon-32.png",
    "64": "./img/icon-64.png"
  },
  "permissions": [
    "activeTab",
    "downloads",
    "tabs",
    "storage",
    "unlimitedStorage",
    "*://*/*",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:1337 https://*.netwoof.com https://d1sq2ro2klr6f0.cloudfront.net; object-src 'self'",
  "page_action": {
    "default_title": "Netwoof is running",
    "default_icon": "img/netwoof.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://localhost/*",
        "*://*.netwoof.com/*"
      ]
    }
  ]
}