StyleLess Copyer

StyleLess Copyer

Copy to clipboard removing HTML style, use Ctrl+Alt+C on a selected text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "StyleLess Copyer",
  "description": "Copy to clipboard removing HTML style, use Ctrl+Alt+C on a selected text",
  "version": "1.2",
  "author": "asettouf",
  "permissions": [
    "clipboardWrite",
    "clipboardRead"
  ],
  "icons": {
    "32": "icon.png",
    "128": "icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "shortcut-min.js",
        "easyCopy.js",
        "copyMessageToClipboard.js"
      ]
    }
  ]
}