Summer Social Bar

Summer Social Bar

Get your own customized toolbar that automatically appears whenever you share a link on social media.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Summer Social Bar",
  "version": "0.0.7",
  "description": "Get your own customized toolbar that automatically appears whenever you share a link on social media.",
  "homepage_url": "http://socialbar.me/",
  "manifest_version": 2,
  "minimum_chrome_version": "20",
  "background": {
    "scripts": [
      "js/lib/jquery.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/bar19.png",
      "38": "img/bar38.png"
    },
    "default_title": "Share with Summer Social Bar"
  },
  "icons": {
    "48": "img/bar48.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' https://api.twitter.com https://platform.twitter.com https://gdata.youtube.com http://localhost:8000;  object-src 'self'; ",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/bar.css",
    "js/lib/jquery.min.js",
    "js/content.js"
  ]
}