Snip It

Snip It

Collect, share, organize and popularize code snippets from around the 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 It",
  "short_name": "Snip It",
  "description": "Collect, share, organize and popularize code snippets from around the web.",
  "version": "1.25",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://www.sitekickr.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "gadget.css"
      ],
      "js": [
        "jquery.min.js",
        "jquery.colorbox-min.js",
        "gadget.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "jquery.min.js",
    "jquery.colorbox-min.js",
    "gadget.js",
    "gadget.css"
  ],
  "browser_action": {
    "default_icon": "settings/settings-icon.png",
    "default_popup": "settings/settings.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      }
    }
  }
}