Skip to content

Desktop Features

The desktop app uses a BFS (breadth-first search) crawl engine. It is domain-constrained (same-host only) with configurable concurrency, depth, and delay. Events are processed in real time.

ParameterRangeDefault
Max Pages1 – 1,00020
Max Depth1 – 5010
Concurrency1 – 205
Delay (ms)0 – 5,00050
Extract Contenton / offon

The dashboard presents eight interactive cards in a responsive grid. Click any card to expand it into an overlay with full details. Press Escape or click the backdrop to close.

Real-time stream of crawled URLs. Each entry shows an HTTP status badge color-coded by range:

  • 2xx - green
  • 3xx - yellow
  • 4xx / 5xx - red

On hover, each row reveals Copy URL and Open in browser actions. The grid card previews the last 14 entries; the expanded view shows the full feed (up to 500 entries).

Automated SEO analysis across all successfully crawled HTML pages. Issues are grouped into 16 check categories. The grid card previews the first four categories with issue counts. The expanded view presents an accordion with per-URL details and Export CSV / Export TXT buttons.

Pie chart and bar chart visualization of HTTP status code distribution. The grid card shows a donut chart; the expanded view adds a horizontal bar chart and an accordion listing every URL grouped by status code, with copy/open actions on hover.

Crawl configuration form with the five parameters listed above. All fields are disabled while a crawl is active. Also includes an Appearance section with a Dark Mode toggle that persists across sessions.

Export crawl results in multiple formats:

FormatDescriptionExtension
JSON ArchiveComplete crawl data with metadata, links, and response details.json
Sitemap XMLStandard sitemap format compatible with search engines.xml
Content ArchiveFull page content as clean Markdown files (premium).zip

Download buttons are disabled until at least one page has been crawled. Files are saved through the native save dialog.

Split-panel viewer for extracted page content. The left panel lists pages that have markdown content, showing title, URL (with copy/open actions), word count, and byline. The right panel renders the selected page’s markdown with GFM support. Requires the Extract Content setting to be enabled.

Email subscription form for product updates.

Upgrade prompt displaying lifetime pricing with a Buy Now button.

The SEO analyzer runs against all 2xx HTML pages and flags issues using these thresholds. Duplicate detection uses canonical URLs when available to avoid false positives across canonicalized page groups.

#CategoryCondition
1Missing titlestitle is empty or absent
2Missing meta descriptionsmeta_description is empty or absent
3Titles too longtitle.length > 60
4Titles too shorttitle.length < 30
5Descriptions too longmeta_description.length > 160
6Descriptions too shortmeta_description.length < 50
7Missing contentword_count is null
8Short contentword_count < 200
9Long contentword_count > 5,000
10Long URLsurl.length > 120
11Noindex pagesmeta_robots or X-Robots-Tag contains noindex
12Nofollow pagesmeta_robots or X-Robots-Tag contains nofollow
13Non-self canonicalscanonical_url differs from the page URL
14Paginated pagesPage has rel="next" or rel="prev"
15Duplicate titlesMultiple pages share the same title
16Duplicate descriptionsMultiple pages share the same meta description

The expanded SEO Issues card provides:

  • An accordion view with per-URL details for each category
  • Export CSV and Export TXT buttons

The desktop app includes a split-pane content viewer for browsing extracted content:

  • Left panel - lists pages with title, URL, word count, and byline
  • Right panel - renders the selected page’s markdown with GFM (GitHub Flavored Markdown) support

Content extraction must be enabled in the Settings card. It converts HTML to clean Markdown by stripping navigation, sidebars, footers, and scripts, keeping only the primary article content.

  • Dark mode - toggleable via Settings card, persisted across sessions
  • Keyboard shortcuts - Escape closes the expanded card overlay
  • Animated transitions - card expand/collapse with backdrop blur
  • Responsive grid - adaptive layout across different screen sizes