Examine source code of YPixiv

Inspect and view changes in YPixiv source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "src/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Y",
        "mac": "Command+Shift+Y"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "libraries/jszip.js",
        "libraries/jsgif/GIFEncoder.js",
        "libraries/jsgif/LZWEncoder.js",
        "libraries/jsgif/NeuQuant.js",
        "libraries/webm-writer-js/ArrayBufferDataStream.js",
        "libraries/webm-writer-js/BlobBuffer.js",
        "libraries/webm-writer-js/WebMWriter.js",
        "src/pixiv/content.js",
        "src/pixiv/ugoira.js",
        "src/extra.js"
      ],
      "matches": [
        "*://www.pixiv.net/*"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 3,
  "name": "YPixiv",
  "short_name": "YPixiv",
  "description": "Pixiv downloader",
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "128": "icons/icon_128.png"
    }
  },
  "permissions": [
    "notifications",
    "downloads",
    "storage",
    "declarativeContent",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://www.pixiv.net/*",
    "*://i.pximg.net/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rule_1",
        "enabled": true,
        "path": "rule_1.json"
      }
    ]
  },
  "version": "0.51"
}