Examine source code of BlueskyShot This

Inspect and view changes in BlueskyShot This 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",
  "manifest_version": 3,
  "name": "BlueskyShot This",
  "description": "Adds a submenu to post options in Bluesky to screenshot posts.",
  "version": "1.0",
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://www.blueskyshots.com/*"
  ],
  "icons": {
    "128": "extension_icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bsky.app/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}