Animalese Typing v1.36

Animalese Typing v1.36

Plays animal crossing villager sounds whenever you type! The official port of my Animalese Typing extension from the chrome store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Joshua Sherry",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "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": {
    "page": "audio.html"
  },
  "action": {
    "default_icon": {
      "128": "assets/images/icon_off.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  }
}