SwiftRead - read faster, learn more

SwiftRead - read faster, learn more

Read two or three times faster, with SwiftRead. Absorb knowledge and learn more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "5.9.2",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "dist/non_app/background/index.js"
  },
  "commands": {
    "open-spreed": {
      "suggested_key": {
        "default": "Alt+V"
      },
      "description": "Open SwiftRead, auto extract content"
    },
    "save-to-app": {
      "suggested_key": {
        "default": "Alt+X"
      },
      "description": "Save to read later with SwiftRead"
    }
  },
  "action": {
    "default_icon": "images/swiftread-icon-128.png",
    "default_popup": "spreedMenu.html"
  },
  "icons": {
    "16": "images/swiftread-icon-16.png",
    "48": "images/swiftread-icon-48.png",
    "128": "images/swiftread-icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/swiftread-icon-48.png",
        "images/spinner.svg",
        "images/close.svg",
        "src/settings_store.js",
        "dist/non_app/content_builders/chat_gpt/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "dist/non_app/content_scripts/source_listener/index.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "dist/non_app/content_scripts/preview/index.js"
      ],
      "css": [
        "dist/non_app/content_scripts/preview/index.js.css"
      ]
    },
    {
      "matches": [
        "https://app.swiftread.com/*",
        "https://*.app.swiftread.com/*",
        "http://localhost/*"
      ],
      "all_frames": false,
      "js": [
        "dist/non_app/content_scripts/swiftread_app/index.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "file_browser_handlers": [
    {
      "id": "open-as-pdf",
      "default_title": "Open PDF with SwiftRead",
      "file_filters": [
        "filesystem:*.pdf"
      ]
    }
  ],
  "homepage_url": "https://chrome.google.com/webstore/detail/swiftread-read-faster-lea/ipikiaejjblmdopojhpejjmbedhlibno",
  "manifest_version": 3,
  "version_name": "5.9.2+939ae7c"
}