Examine source code of SnapiX

Inspect and view changes in SnapiX 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
{
  "name": "SnapiX",
  "description": "Introducing \"SnapiX\" – Your Ultimate Tweet Snapshot App!",
  "version": "1.1",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://twitter.com/*",
    "https://*.twitter.com/*"
  ],
  "permissions": [
    "webNavigation"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle",
      "js": [
        "public/take_screenshot.js",
        "lib/domtoimage.min.js",
        "lib/watermark.min.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}