CodeCrafter

CodeCrafter

Streamlined code snippet manager for Edge. Save, organize, and access frequently used snippets with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "CodeCrafter",
  "version": "1.1.0",
  "description": "Streamlined code snippet manager for Edge. Save, organize, and access frequently used snippets with ease.",
  "author": {
    "name": "Aditya Tiwari",
    "email": "[email protected]",
    "homepage": "https://adityatiwari.live/"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "CodeCrafter",
    "default_icon": {
      "16": "img/snips-16.png",
      "48": "img/snips-48.png",
      "64": "img/snips-64.png",
      "128": "img/snips-128.png"
    }
  },
  "icons": {
    "16": "img/snips-16.png",
    "48": "img/snips-48.png",
    "64": "img/snips-64.png",
    "128": "img/snips-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "clipboardWrite",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "thankyou.html"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}