ILGMS Drafting Helper Plugin

ILGMS Drafting Helper Plugin

A tool for creating drafting templates in ILGMS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ILGMS Drafting Helper Plugin",
  "version": "1.0.1",
  "description": "A tool for creating drafting templates in ILGMS",
  "manifest_version": 3,
  "author": "BhagyanathVadakkan",
  "action": {
    "default_popup": "popup.html",
    "default_title": "ILGMS Drafting Helper Plugin",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "copy.js",
        "lbsettings.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://ajax.googleapis.com/;"
  }
}