Examine source code of Ybug - Visual feedback tool for websites

Inspect and view changes in Ybug - Visual feedback tool for websites source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.0",
  "name": "Ybug",
  "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
}