SourceBreaker App

SourceBreaker App

Provides quick access to searches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SourceBreaker App",
  "description": "Provides quick access to searches",
  "version": "3.9.0",
  "action": {
    "default_icon": "icon-big.png",
    "default_title": "SourceBreaker App"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "background",
    "scripting",
    "notifications"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "offline_enabled": false,
  "web_accessible_resources": [
    {
      "resources": [
        "templates/*",
        "background.js",
        "index.js",
        "linkedin.js",
        "ui.app.js",
        "debug-window.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src https://*.sentry.io https://*.pusher.com wss://*.pusher.com https://*.pendo.io https://api.ipify.org *.sourcebreaker.dev *.sourcebreaker.com"
  }
}