| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Google Sheets add-on that lets users trigger Weld scrapers and write results directly into spreadsheets.
Login to clasp:
clasp loginCreate a new Apps Script project (bound to a test spreadsheet):
cd packages/sheets-plugin
clasp create --type sheets --title "Weld Scraper Dev"This updates .clasp.json with your script ID.
Push code to Google:
clasp pushOpen the script editor (to verify):
clasp openTest in a spreadsheet:
clasp push --watchAutomatically pushes on file changes.
src/ ├── Code.gs # Menu, onOpen, sidebar launchers ├── Auth.gs # API key storage & validation ├── Api.gs # Weld REST API client (UrlFetchApp) ├── SheetWriter.gs # Write scrape results to sheet tabs ├── Sidebar.html # Main sidebar UI (scrape form, progress, results) └── Setup.html # Settings/API key configuration screen
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /api/scrapers | List available scrapers |
| POST | /api/jobs/create | Create a scrape job |
| GET | /api/jobs/get | Poll job status |
| GET | /api/jobs/results | Fetch completed results |
| GET | /api/jobs | List job history |
| GET | /api/credits/balance | Show credit balance |
To publish to the Google Workspace Marketplace:
See Google's publishing guide for details.
The add-on requires these minimal OAuth scopes:
| Back | FazBrowse Home | New Git URL |