LollyLaw Extension

LollyLaw Extension

A chrome extension to facilitate DS form filling using LollyLaw.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LollyLaw Extension",
  "version": "0.0.8",
  "description": "A chrome extension to facilitate DS form filling using LollyLaw.",
  "permissions": [
    "tabs",
    "activeTab",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "https://ceac.state.gov/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://ceac.state.gov/GenNIV/*",
        "https://ceac.state.gov/genniv/*",
        "https://ceac.state.gov/IV/*",
        "https://ceac.state.gov/IVApp/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/nav.html",
        "pages/intent.html",
        "pages/login.html",
        "pages/search.html",
        "styles/intent.css",
        "styles/login.css",
        "styles/search.css",
        "styles/nav.css",
        "scripts/script.js"
      ],
      "matches": [
        "https://ceac.state.gov/*"
      ]
    }
  ],
  "action": {},
  "manifest_version": 3
}