Ublicista

Converts your web content in Ebook format that you can read in your focus time
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ublicista",
  "description": "Converts your web content in Ebook format that you can read in your focus time",
  "version": "1.0.1",
  "background": {
    "service_worker": "main.js"
  },
  "icons": {
    "32": "icon_comma.png"
  },
  "action": {
    "default_icon": {
      "32": "icon.png"
    }
  },
  "manifest_version": 3,
  "permissions": [
    "notifications",
    "tabs",
    "downloads",
    "scripting",
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://ublicista-api.incubat.io/*"
  ],
  "commands": {
    "ublicista_open_collections": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Open Ublicista Collections"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self';"
  }
}