Bolt: The Fastest Gmail Experience ⚡

Bolt: The Fastest Gmail Experience ⚡

Bolt is a blazingly-fast Gmail client that loads your Gmail updates before the blink of an eye!⚡

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bolt: The Fastest Gmail Experience ⚡",
  "short_name": "Bolt: Gmail Companion [Alt + B]",
  "version": "1.0.6",
  "description": "Bolt is a blazingly-fast Gmail client that loads your Gmail updates before the blink of an eye!⚡",
  "icons": {
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "homepage_url": "https://getbolt.app/",
  "side_panel": {
    "default_path": "gmail/gmail.html"
  },
  "permissions": [
    "sidePanel",
    "unlimitedStorage",
    "storage",
    "background",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_3",
        "enabled": true,
        "path": "rules/rule3.json"
      }
    ]
  },
  "host_permissions": [
    "https://*.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "js": [
        "content/gm_contentscr.js"
      ],
      "css": [
        "content/gm_contentscr.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "extension_ids": [
        "*"
      ]
    }
  ],
  "commands": {
    "open_gmail": {
      "_execute_action": {
        "default": "Alt+B",
        "windows": "Alt+B",
        "mac": "Alt+B",
        "chromeos": "Alt+B",
        "linux": "Alt+B"
      },
      "description": "Press Alt + B to open the Bolt SidePanel"
    }
  },
  "author": "Bolt for Gmail",
  "background": {
    "service_worker": "bk/service.js"
  },
  "content_security_policy": {
    "extension_pages": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'",
    "content_scripts": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "minimum_chrome_version": "114",
  "action": {
    "default_icon": {
      "32": "images/32.png",
      "48": "images/48.png",
      "64": "images/64.png",
      "128": "images/128.png"
    },
    "default_title": "Bolt: Gmail SidePanel [Alt + B]"
  }
}