AI Illustrations filter for pixiv

AI Illustrations filter for pixiv

Filtering specified AI illustrated users and tags

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_title__",
  "description": "__MSG_about__",
  "author": "TNK Software",
  "homepage_url": "https://www.tnksoft.com/",
  "default_locale": "en",
  "version": "1.3",
  "icons": {
    "512": "res/icon.png"
  },
  "options_page": "index.htm",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pixiv.net/*"
      ],
      "js": [
        "start.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "host_permissions": [
    "https://www.pixiv.net/ajax/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "filter.js"
      ],
      "matches": [
        "https://www.pixiv.net/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}