Examine source code of Share Current Page - Web Share API

Inspect and view changes in Share Current Page - Web Share API 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": "Share Current Page - Web Share API",
  "version": "1.0",
  "description": "Quickly share the current page’s URL using the Web Share API. Ideal for sharing links with ease.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "share.js"
  },
  "action": {
    "default_title": "Share Current Page - Web Share API",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  }
}