Sugoi Shimeji

Sugoi Shimeji

Small animated characters that you can interact with.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sugoi Shimeji",
  "version": "2.4.0",
  "description": "Small animated characters that you can interact with.",
  "icons": {
    "32": "icon_32.png",
    "512": "icon_512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "icon_512.png",
    "default_title": "Sugoi Shimeji",
    "default_popup": "./popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/media/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}