Signal Flare

Signal Flare

Shared Annotations in All Your Analytics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Signal Flare",
  "short_name": "Signal Flare",
  "version": "3.0.0",
  "author": "Signal Flare",
  "homepage_url": "https://signalflare.app",
  "description": "Shared Annotations in All Your Analytics",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "96": "icon-96.png",
    "128": "icon-128.png",
    "256": "icon-256.png",
    "512": "icon-512.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_title": "Signal Flare",
    "default_popup": "./index.html",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "64": "icon-64.png",
      "96": "icon-96.png",
      "128": "icon-128.png",
      "256": "icon-256.png",
      "512": "icon-512.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F",
        "chromeos": "Ctrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content.js"
      ],
      "css": [
        "./content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.signalflare.app/*",
      "*://localhost/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxJe3skmT5oyho6fZAgyhnpQuFECzNIEz+j82KtiXKuYFRWAK6RRWeSjLSF3PT62Qq1DWlGV6q1bNkwgo9j9LCNTILcvrB5axgWj98vHJ4q3EBtcZo1+fZMaa9udTxfbF72825tHdcFDAwl4+lpKz8PhASWCJZHD5a1kCBJJ5pEgudlULdDvCicCLEw50ZTN02Wi5bEVY5VM2/vIkkGS+hUMjLqaRQf8MmtQ6fDbMqjhJru7DrNukPe3RQl7bi0Yl5sGk0uuAuUd6eE/ik44jUzcOaOVuKnZrVbRGPDjMEVkR8zJ5mGwOoW+tTNbL1csKQecnu6qGIn4d3Gep9yaOFQIDAQAB",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_permissions": [
    "notifications",
    "contextMenus"
  ]
}