Animix

Animix

Skin for gogoanime.pe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Animix",
  "version": "0.1",
  "description": "Skin for gogoanime.pe",
  "icons": {
    "128": "favicon.png"
  },
  "action": {
    "default_icon": "favicon.png",
    "default_title": "Animix: Watch Anime Online"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gogoanime.pe/popular.html*",
        "https://gogoanime.pe/search.html*"
      ],
      "js": [
        "home_search.js"
      ]
    },
    {
      "matches": [
        "https://gogoanime.pe/"
      ],
      "js": [
        "homepage.js"
      ]
    },
    {
      "matches": [
        "https://gogoanime.pe/category/*"
      ],
      "js": [
        "series_home.js"
      ]
    },
    {
      "matches": [
        "https://goload.one/*"
      ],
      "all_frames": true,
      "js": [
        "vid_player.js"
      ]
    },
    {
      "matches": [
        "https://gogoanime.pe/*episode*"
      ],
      "js": [
        "wrapper.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}