FetchFox
A ChatGPT-powered web scraper
What is FetchFox?
FetchFox is a Chrome extension developed by Brandon Hsiao, and its main feature is "A ChatGPT-powered web scraper".
Extension Screenshots
Download FetchFox Extension CRX File
Download FetchFox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A ChatGPT-powered web scraper that works in three simple steps: 1) Install the extension. Install our extension from the Chrome App store. After installing, make sure to add your OpenAI key to enable access to ChatGPT. 2) Configure your scrape. Create a new scraping job and type in the data you want to extract. Plain English works, for example: "What is this person's job title?" 3) Scrape the data. Visit the pages you want to scrape, and click the extension once per page. When you're done, download a CSV for later use
Extension Basic Information
Name | FetchFox |
ID | pibmlmgljfjfndpingfdkaeeglioecem |
Official URL | https://chromewebstore.google.com/detail/fetchfox/pibmlmgljfjfndpingfdkaeeglioecem |
Description | A ChatGPT-powered web scraper |
File Size | 2.21 MB |
Installation Count | 229 |
Current Version | 0.0.1 |
Last Updated | 2023-11-09 |
Publish Date | 2023-11-06 |
Rating | 1.50/5 Total 2 Ratings |
Developer | Brandon Hsiao |
[email protected] | |
Payment Type | free |
Extension Website | https://ff-landing-tawny.vercel.app/ |
Privacy Policy Page URL | https://fetchfoxai.com/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A ChatGPT-powered web scraper", "version": "0.0.1", "manifest_version": 3, "name": "FetchFox", "options_page": "options.html", "action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "icons": { "128": "logo.png" }, "web_accessible_resources": [ { "resources": [ "logo.png" ], "matches": [] } ], "permissions": [ "scripting", "storage", "activeTab" ] } |