Gaya

Gaya

Parse form fields and redirect

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gaya",
  "version": "3.1.4",
  "description": "Parse form fields and redirect",
  "icons": {
    "16": "images/gaya.png",
    "48": "images/gaya.png",
    "128": "images/gaya.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Gaya",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "commands": {
    "trigger-pasting": {
      "suggested_key": "Alt+G",
      "description": "Trigger pasting on the current page"
    },
    "trigger-copying": {
      "suggested_key": "Alt+Shift+G",
      "description": "Trigger copying on the current page"
    },
    "_execute_action": {
      "suggested_key": "Alt+Shift+U"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs",
    "webNavigation",
    "commands",
    "identity"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "images/*",
        "icons/*",
        "fonts/*",
        "frames/*",
        "gaya-react-helpers.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}