Copy Plus Tool

Copy Plus Tool

This tool lets you make multiple text selections and copy paste it in a single step for research or note making.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Plus Tool",
  "version": "1.0",
  "description": "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "assets/copy_plus_icon16.png",
    "32": "assets/copy_plus_icon32.png",
    "48": "assets/copy_plus_icon48.png",
    "128": "assets/copy_plus_icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}