Doddle Widget

Doddle Widget

Screen capture for bugs and tasks to your channels in Doddle

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Doddle Widget",
  "short_name": "Doddle",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "Screen capture for bugs and tasks to your channels in Doddle",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "logo-white.png",
    "bug-icon.png",
    "feature-icon.png",
    "pin.png",
    "papyruswidget.css"
  ]
}