CoolFace
Apppublic

Kuperberg/embassy-v6

sourceHugging Facemitupdated 9mo agoView on Hugging Face
0likes
App README

๐ŸŒ Embassy V6 - Remote Browser Proxy

Access any website through a remote Selenium browser with encrypted HTML transmission.

๐Ÿš€ Features

  • โ€”HTML Rendering: Real HTML (not screenshots!)
  • โ€”Full Interaction: Clicks, forms, navigation
  • โ€”Encrypted Transfer: XOR + GZIP + Base64
  • โ€”CSS Selectors: Accurate element targeting
  • โ€”Link Detection: Smart navigation

โš™๏ธ Configuration Required

Set Secret Token

  1. 1.Go to Settings โ†’ Repository secrets
  2. 2.Add secret:
  3. 3.Name: EMBASSY_TOKEN
  4. 4.Value: [Your 32-char random token]

Generate Token

PowerShell:

powershell
-join ((65..90) + (97..122) + (48..57) | Get-Random -Count 32 | ForEach-Object {[char]$_})

๐Ÿ’ป Client Setup

In your local viewer_v6.html:

javascript
const EMBASSY_URL = 'https://kuperberg-browser-embassy-v6-clean.hf.space';
const EMBASSY_TOKEN = 'your-32-char-token-here';

๐Ÿ“– API Endpoints

  • โ€”GET / - Health check
  • โ€”POST /navigate - Navigate to URL
  • โ€”GET /get_page_html - Get encrypted HTML
  • โ€”POST /click_element - Click element
  • โ€”POST /submit_form - Submit form

โš ๏ธ Legal Notice

This tool is for accessing content you're authorized to view. Respect websites' Terms of Service and robots.txt.