DribbleGrab

DribbleGrab

Grab palette from dribble in one tap

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DribbleGrab",
  "version": "0.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "description": "Grab palette from dribble in one tap",
  "homepage_url": "http://workofutkarsh.com",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "DribbleGrab!"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://dribbble.com/*",
        "http://dribbble.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ]
}