Animalese Typing

Animalese Typing

Plays animal crossing villager sounds whenever you type!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Joshua Sherry",
  "manifest_version": 3,
  "name": "Animalese Typing",
  "description": "Plays animal crossing villager sounds whenever you type!",
  "version": "1.37",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "animalese.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "assets/images/icon_off.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "offscreen"
  ],
  "icons": {
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  }
}