Ness - mevaker xcp extension

Ness - mevaker xcp extension

Custom actions for chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ness - mevaker xcp extension",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Custom actions for chrome",
  "browser_action": {
    "default_icon": {
      "16": "icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "clipboardRead",
    "clipboardWrite"
  ]
}