Avrio

Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Avrio",
  "manifest_version": 2,
  "description": "Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team.",
  "homepage_url": "https://www.avrio.com",
  "icons": {
    "16": "assets/avrio-icon-dark-16.png",
    "48": "assets/avrio-icon-dark-48.png",
    "128": "assets/avrio-icon-dark-128.png"
  },
  "browser_action": {
    "default_icon": "assets/avrio-icon-dark-16.png",
    "default_title": "Avrio"
  },
  "background": {
    "scripts": [
      "./static/js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "http://localhost:3000/"
      ],
      "all_frames": false,
      "css": [
        "./assets/extension.css"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://analytics.google.com/*",
        "*://mail.google.com/*",
        "*://docs.google.com/*",
        "*://insights.hotjar.com/*",
        "*://mixpanel.com/*"
      ],
      "all_frames": true,
      "css": [
        "./assets/extension.css"
      ],
      "js": [
        "./static/js/createReport.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "./assets/extension.css"
      ],
      "js": [
        "./static/js/pins.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "webRequest",
    "contextMenus",
    "webRequestBlocking",
    "background",
    "clipboardWrite",
    "storage"
  ],
  "web_accessible_resources": [
    "index.html",
    "/static/*",
    "/assets/*"
  ],
  "version": "1.18.12"
}