TopRank Skills

Home / Claw Skills / Autres / font-interceptor
Official OpenClaw rules 15%

font-interceptor

Extract fonts (TTF/OTF) from any website using MSCHF Font Interceptor. Use when user drops a URL and wants to identify/extract/download fonts from that website, or asks "what font is this site using" or similar font extraction requests.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 font-interceptor 技能。 若已安装,则直接安装 font-interceptor 技能。

Overview

Skill Key
honeybee1130/font-interceptor
Author
honeybee1130
Source Repo
openclaw/skills
Version
-
Source Path
skills/honeybee1130/font-interceptor
Latest Commit SHA
fcd97a04bd449c429291be7dca95958f048d6a54

Extracted Content

SKILL.md excerpt

# Font Interceptor

Extract fonts from any website using https://fontinterceptor.mschfmag.com/

## Workflow

When user provides a URL to extract fonts from:

1. Open browser to `https://fontinterceptor.mschfmag.com/`
2. Enter the target URL in the search/input field
3. Submit and wait for results
4. Report found fonts (names + download links for TTF/OTF files)

## Browser Automation

```javascript
// Using browser tool with openclaw profile
// 1. Navigate to font interceptor
browser({ action: "open", targetUrl: "https://fontinterceptor.mschfmag.com/", profile: "openclaw" })

// 2. Take snapshot to find input field
browser({ action: "snapshot", profile: "openclaw" })

// 3. Type URL into input and submit
browser({ action: "act", request: { kind: "type", ref: "<input-ref>", text: "https://target-site.com", submit: true } })

// 4. Wait for results, take snapshot
browser({ action: "snapshot", profile: "openclaw" })

// 5. Report fonts found, including download links
```

## Fallback (No Browser)

If browser unavailable, instruct user:
1. Go to https://fontinterceptor.mschfmag.com/
2. Paste URL: `<target-url>`
3. Hit enter
4. Download the fonts shown

## Output Format

Report results as:
```
Fonts found on <url>:
- FontName.ttf [download link]
- FontName.otf [download link]
```

If no fonts found, report that the site may use system fonts or web-safe fonts only.

Related Claw Skills