Dribbble Autozoom Extension

Dribbble Autozoom Extension

This extension will automagically zoom to 2x every shot you open in Dribbble

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dribbble Autozoom Extension",
  "description": "This extension will automagically zoom to 2x every shot you open in Dribbble",
  "author": "Carlos Roso",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Test"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.dribbble.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js",
    "script_delay.js"
  ]
}