Databread - Supercharge your SaaS tools

Databread - Supercharge your SaaS tools

Make your browser work for you with Databread, bringing you the insights, tools, and data you need to do your job.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Databread - Supercharge your SaaS tools",
  "description": "Make your browser work for you with Databread, bringing you the insights, tools, and data you need to do your job.",
  "manifest_version": 2,
  "version": "1.0.0",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "axios.js",
      "pusher.js",
      "includes.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "includes.js",
        "jquery.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "toggle-logo.svg",
    "toggle-close.png"
  ]
}