Clipboard Genie for Developers

Clipboard Genie for Developers

Become a better programmer! Keep track of copied code by remembering where it came from, and search for it later.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Clipboard Genie for Developers",
  "description": "Become a better programmer! Keep track of copied code by remembering where it came from, and search for it later.",
  "version": "1.0",
  "manifest_version": 3,
  "author": "Abhinav Rao and Divyanshu Agrawal",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "dist/background.js"
  },
  "icons": {
    "512": "public/genie.png"
  },
  "action": {
    "default_popup": "public/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/injected_script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}