Examine source code of Pinpasta Extension

Inspect and view changes in Pinpasta Extension 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": "Pinpasta Extension",
  "description": "This app pairs with the Pinpasta Figma Plug-in, extracting images from your Pinterest board for Figma use or .zip download.",
  "version": "2.3.1",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/*",
        "background.js",
        "content_script.js"
      ],
      "matches": [
        "https://pinterest.com/*"
      ]
    }
  ]
}