Examine source code of Pieces for Developers: Copilot & Code Capture

Inspect and view changes in Pieces for Developers: Copilot & Code Capture 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": "Pieces for Developers: Copilot & Code Capture",
  "short_name": "Pieces",
  "version": "4.0.5",
  "description": "Save, share, generate and understand code snippets & concepts to boost your productivity during online research and problem-solving.",
  "author": "Rutvik Tak",
  "homepage_url": "https://pieces.app",
  "icons": {
    "16": "/images/icons/icon16.png",
    "128": "/images/icons/icon128.png"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "action": {
    "default_title": "Pieces Web Extension",
    "default_icon": {
      "16": "/images/icons/icon16.png",
      "24": "/images/icons/icon32.png",
      "32": "/images/icons/icon32.png",
      "48": "/images/icons/icon48.png",
      "96": "/images/icons/icon96.png",
      "128": "/images/icons/icon128.png"
    }
  },
  "commands": {
    "savePiece": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Save the highlighted text as a snippet."
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; script-src-elem 'self';"
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "content.dart.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "sidePanel",
    "activeTab",
    "contextMenus",
    "storage",
    "scripting",
    "clipboardWrite",
    "clipboardRead"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "highlighter.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}