Spanish Conjugation Finder

Spanish Conjugation Finder

An extension for finding the conjugations of of selected Spanish words

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spanish Conjugation Finder",
  "description": "An extension for finding the conjugations of of selected Spanish words",
  "version": "2.0.0",
  "background": {
    "service_worker": "js/serviceworker.js"
  },
  "permissions": [
    "contextMenus",
    "sidePanel",
    "declarativeNetRequest",
    "storage"
  ],
  "side_panel": {
    "default_path": "html/sidePanel.html"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "host_permissions": [
    "https://www.spanishdict.com/*"
  ],
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}