Examine source code of Yulia

Inspect and view changes in Yulia 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
{
  "manifest_version": 3,
  "name": "Yulia",
  "version": "1.1",
  "permissions": [
    "storage",
    "tabs",
    "nativeMessaging"
  ],
  "description": "Yulia: the easy web archiver",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://archive.is/wip/*"
      ],
      "css": [
        "loadingPageStyles.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://archive.is/wip/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://archive.is/*"
      ],
      "css": [
        "archivekiller.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://archive.is/*"
      ],
      "js": [
        "captureContent.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "16": "outline16.png",
      "48": "outline48.png",
      "128": "outline128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon16.png",
        "icon48.png",
        "icon128.png",
        "outline16.png",
        "outline48.png",
        "outline128.png",
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "outline16.png",
    "48": "outline48.png",
    "128": "outline128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "yulia@bravenewapp.com",
      "strict_min_version": "126.0"
    }
  },
  "default_locale": "en"
}