Snip n Share

Snip n Share

Share, Search and Annotate the snippets on web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Snip n Share",
  "description": "Share, Search and Annotate the snippets on web.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "images/icon-enabled.png",
    "default_title": "Toggle Snip n Share."
  },
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/jquery.min.js",
      "js/slip-n-share.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "slip-n-share.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/slip-n-share.js"
      ]
    }
  ],
  "icons": {
    "128": "images/icon-enabled.png"
  },
  "web_accessible_resources": [
    "images/*.png"
  ]
}