Ybug - Visual feedback tool for websites

Ybug - Visual feedback tool for websites

Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Capture current page, annotate it and send it to 20+ integrations such as GitHub, Trello, Asana, Jira and more...",
  "version": "1.1.1",
  "name": "Ybug - Visual feedback tool for websites",
  "short_name": "Ybug",
  "author": "Ybug",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "annotate.bundle.js"
      ],
      "matches": [
        "*://ybug-dev.io/*",
        "*://ybug.io/*"
      ]
    },
    {
      "js": [
        "content.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://ybug-dev.io/*",
      "*://ybug.io/*"
    ]
  },
  "browser_action": {
    "default_icon": "icon-32.png",
    "default_title": "Ybug (Alt+Y)"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Take screenshot",
      "suggested_key": {
        "default": "Alt+Y",
        "mac": "Alt+Y"
      }
    }
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "*://ybug-dev.io/*",
    "*://ybug.io/*"
  ],
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}