CopyFlow

CopyFlow

Users can copy blocks of code at the click of a button via copy button at bottom right of a code snippet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CopyFlow",
  "description": "Users can copy blocks of code at the click of a button via copy button at bottom right of a code snippet. ",
  "version": "1.1.0",
  "icons": {
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "css": [
        "style.css",
        "style.scss"
      ],
      "js": [
        "background.js",
        "popup.js"
      ],
      "matches": [
        "https://stackoverflow.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": "icon_128.png",
    "default_title": "CopyFlow"
  }
}