LLX E-File Extension (4.0.0)

LLX E-File Extension (4.0.0)

Lawlogix's Chrome E-File extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LLX E-File Extension (4.0.0)",
  "description": "Lawlogix's Chrome E-File extension",
  "version": "4.0.0",
  "icons": {
    "16": "images/llx_icon_16.png",
    "32": "images/llx_icon_32.png",
    "48": "images/llx_icon_48.png",
    "128": "images/llx_icon_128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-3.5.1.min.js",
      "js/background.js",
      "js/aes.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/llx_icon_128.png",
    "default_popup": "html/popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+O",
        "mac": "Alt+O"
      },
      "description": "Opens LLX Chrome Extension popup"
    },
    "toggle-feature-load": {
      "suggested_key": {
        "default": "Alt+L",
        "mac": "Alt+L"
      },
      "description": "Activates FLAG-9035, FLAG-9141, DS-160 and H1B Registration Load Feature",
      "global": false
    },
    "toggle-feature-populate": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "Populates FLAG-9035, FLAG-9141, DS-160 or H1B Registration to DOL, DOS or USCIS application",
      "global": false
    }
  },
  "web_accessible_resources": [
    "css/modal.css",
    "images/loading-image.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/jquery-3.5.1.min.js",
        "js/content.js"
      ],
      "css": [
        "css/modal.css"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "storage",
    "activeTab",
    "tabs"
  ]
}