pixilart themer

pixilart themer

applies custom themes to pixilart.com using css. you can configure the theme thru the popup menu. **does not work if pixilart is…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1",
  "name": "pixilart themer",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "heart.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.pixilart.com/*",
        "*://www.pixil.art/*"
      ],
      "exclude_globs": [
        "*/mobile",
        "*/shop",
        "*/shop/*",
        "*/help",
        "*/help/*",
        "*com/privacy",
        "*art/privacy",
        "*/terms",
        "*/events"
      ],
      "css": [
        "theme.css",
        "defaults.css"
      ],
      "js": [
        "retrieve.js"
      ]
    }
  ]
}