Fatebook for Chrome

Fatebook for Chrome

The fastest way to make and track predictions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fatebook for Chrome",
  "description": "The fastest way to make and track predictions",
  "homepage_url": "https://fatebook.io/",
  "version": "1.0.3",
  "manifest_version": 3,
  "action": {
    "default_title": "Click to make a prediction",
    "default_icon": {
      "16": "scale16.png",
      "32": "scale32.png",
      "48": "scale48.png",
      "128": "scale128.png"
    }
  },
  "icons": {
    "16": "scale16.png",
    "32": "scale32.png",
    "48": "scale48.png",
    "128": "scale128.png"
  },
  "author": "[email protected]",
  "short_name": "Fatebook",
  "commands": {
    "open_modal": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Make a new prediction, from any webpage."
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "resources": [
        "/direct_inject*",
        "*.png"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*/*",
      "http://*/*"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "sentry-content-script.js",
        "after.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}