Tools QuickView

Tools QuickView

Quick and easy access to key tools for marketers, SEOs, Developers, and other web based tasks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tools QuickView",
  "description": "Quick and easy access to key tools for marketers, SEOs, Developers, and other web based tasks.",
  "version": "2.0",
  "manifest_version": 3,
  "author": "@dasfnyc, @craulynf",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "/assets/icons/16.png",
    "32": "/assets/icons/32.png",
    "128": "/assets/icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/icons/16.png",
      "32": "/assets/icons/32.png",
      "128": "/assets/icons/128.png"
    }
  }
}