Soulmix Extension

Soulmix Extension

Remix the best of 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": "Soulmix Extension",
  "short_name": "Soulmix",
  "description": "Remix the best of the web.",
  "version": "0.0.7",
  "permissions": [
    "*://*/*",
    "contextMenus",
    "background",
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "bookmarklet.css"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-1.11.1.min.js",
    "bookmarklet.js",
    "bookmarklet.css"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Post to Soulmix"
  }
}