PSA Autocomplete

PSA Autocomplete

Autocomplete the PSA formulary

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PSA Autocomplete",
  "version": "1.0.0",
  "description": "Autocomplete the PSA formulary",
  "default_locale": "en",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "img/logo/icon-16px.png",
    "48": "img/logo/icon-48px.png",
    "128": "img/logo/icon-128px.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "img/logo/icon-16px.png",
      "48": "img/logo/icon-48px.png"
    }
  },
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "https://psa-fs.ent.cgi.com/*"
      ],
      "js": [
        "node_modules/jquery/dist/jquery.js",
        "js/data.js",
        "js/utils.js",
        "js/content.js"
      ],
      "all_frames": true
    }
  ]
}