Challenge Grid Autofill

Challenge Grid Autofill

Provides a way to parse challenge prompts and autofill the corresponding response for websites using security/challenge grids.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDescription__",
  "version": "2.0.0",
  "short_name": "__MSG_AppShortName__",
  "manifest_version": 3,
  "default_locale": "en",
  "author": "Ryan Thaut",
  "homepage_url": "https://github.com/rthaut/challenge-grid-autofill-extension/",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "24": "images/icon-24.png",
    "32": "images/icon-32.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "19": "images/icon-19.png",
      "24": "images/icon-24.png",
      "32": "images/icon-32.png",
      "38": "images/icon-38.png",
      "48": "images/icon-48.png",
      "64": "images/icon-64.png",
      "96": "images/icon-96.png",
      "128": "images/icon-128.png"
    },
    "default_title": "__MSG_BrowserActionTitle__",
    "default_popup": "pages/popup.html"
  },
  "options_ui": {
    "page": "pages/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "scripting",
    "storage"
  ],
  "minimum_chrome_version": "91",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}