vk one click share

vk one click share

This extension add to standart button share new = 'Click to share'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "vk one click share",
  "description": "This extension add to standart button share new = 'Click to share'",
  "version": "2.9.1",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "images/share-icon-min.png",
    "dist/jquery.min.map",
    "images/loading.gif",
    "images/delete.png",
    "images/share-icon-audio.png",
    "images/share-icon.png",
    "templates/settings.tmpl.html",
    "templates/contactDialog.tmpl.html"
  ],
  "icons": {
    "16": "images/share-icon-16.png",
    "48": "images/share-icon-48.png",
    "128": "images/share-icon-128.png"
  },
  "background": {
    "scripts": [
      "dist/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://vk.com/*",
        "https://vk.com/*"
      ],
      "js": [
        "dist/vk-one-click-share.js"
      ],
      "css": [
        "dist/vk-one-click-share.css"
      ]
    }
  ]
}