Examine source code of Crypto Research Paper Tab Titles

Inspect and view changes in Crypto Research Paper Tab Titles 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": "Crypto Research Paper Tab Titles",
  "description": "Replaces the tab title of PDFs on IACR eprint (an archive for cryptographic research papers) with the actual title of the paper.",
  "version": "0.0.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://eprint.iacr.org/*.pdf"
      ],
      "include_globs": [
        "https://eprint.iacr.org/????/*.pdf*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://eprint.iacr.org/*.pdf"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}