Examine source code of Clipio

Inspect and view changes in Clipio 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,
  "version": "1.0.1.0",
  "name": "Clipio",
  "description": "Save from Web to Notion without breaking your flow.",
  "icons": {
    "48": "public/clipio_48.png",
    "512": "public/clipio_512.png"
  },
  "action": {
    "default_icon": {
      "48": "public/clipio_48.png",
      "512": "public/clipio_512.png"
    },
    "defautl_title": "Clipio"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "identity",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*/"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/commandPallete.tsx-loader-8941cd54.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/commandPallete-19866bdb.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/*",
        "assets/global-e0af02cf.js",
        "assets/browser-polyfill-0e92631d.js",
        "assets/rootCommandIds-1c06320b.js",
        "assets/browser-39c9cb0a.js",
        "assets/_commonjsHelpers-725317a4.js",
        "assets/getContent.ts-5fc934bd.js",
        "assets/highlightCore.ts-ac44c4c9.js",
        "assets/commandPallete.tsx-5667a76b.js"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/browser-39c9cb0a.js",
        "assets/browser-polyfill-0e92631d.js",
        "assets/_commonjsHelpers-725317a4.js",
        "assets/getContent.ts-5fc934bd.js",
        "assets/highlightCore.ts-ac44c4c9.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "version_name": "1.0.1",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "commands": {
    "save-page": {
      "suggested_key": {
        "windows": "Alt+Shift+U",
        "mac": "Alt+Shift+U"
      },
      "description": "Trigger save page command"
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+G",
        "mac": "Alt+Shift+G"
      }
    }
  }
}