GlossaryTech | Learn tech words

GlossaryTech | Learn tech words

Learn tech terms whilst web sourcing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "GlossaryTech | Learn tech words",
  "version": "0.11.2",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "./term.css"
      ],
      "js": [
        "./chartist.js",
        "./chartist-plugin-tooltip.js",
        "./main.js"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "cookies",
    "activeTab",
    "storage"
  ],
  "description": "Learn tech terms whilst web sourcing",
  "icons": {
    "16": "./img/ic-16.png",
    "48": "./img/ic-48.png",
    "128": "./img/ic-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "main.css",
        "fonts/*",
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "./img/icon.png",
    "default_title": "GlossaryTech | Learn tech words"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}