GOFF - Login Automático

GOFF - Login Automático

GOFF - Login automático nos sites suportados pelo SendysGOFF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GOFF - Login Automático",
  "description": "GOFF - Login automático nos sites suportados pelo SendysGOFF",
  "version": "1.2",
  "icons": {
    "16": "images/goff_16.png",
    "32": "images/goff_32.png",
    "48": "images/goff_48.png",
    "128": "images/goff_128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://www.acesso.gov.pt/*",
    "https://app.seg-social.pt/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://localhost/*",
        "https://gof.sendys.pt/*",
        "https://goff.sendys.pt/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}