Tagbird

Tagbird

Get the best view on your online data collection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Tagbird",
  "short_name": "Tagbird",
  "description": "Get the best view on your online data collection",
  "version": "2.0",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "96": "img/icon_96.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png",
      "96": "img/icon_96.png",
      "128": "img/icon_128.png"
    },
    "default_title": "Tagbird",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "iziToast.min.css",
        "inpage.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js",
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}