Examine source code of Element to Figma

Inspect and view changes in Element to Figma 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",
  "name": "Element to Figma",
  "description": "Copy page elements to figma",
  "version": "1.0.1",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon128.png",
    "128": "icons/icon256.png"
  },
  "browser_action": {
    "default_title": "Element to Figma",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "downloads"
  ]
}