Web Scrape
Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet!
Что такое Web Scrape?
Web Scrape - это расширение Chrome, разработанное https://webscrape.me, и его основная функция - "Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet!".
Снимки экрана расширения
Скачать файл CRX расширения Web Scrape
Скачайте файлы расширений Web Scrape в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Scrape the web with a single click!
Основная информация о расширении
Название | Web Scrape |
ID | impbblcbbkkccnijopkamgjodfjgnpje |
Официальный URL | https://chromewebstore.google.com/detail/web-scrape/impbblcbbkkccnijopkamgjodfjgnpje |
Описание | Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet! |
Размер файла | 285 KB |
Количество установок | 154 |
Текущая Версия | 0.0.0.4 |
Последнее Обновление | 2023-03-09 |
Дата публикации | 2023-02-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://webscrape.me |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://webscrape.me/support |
URL страницы политики конфиденциальности | https://webscrape.me/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Web Scrape", "version": "0.0.0.4", "description": "Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet!", "icons": { "16": "assets\/scraper_16.png", "48": "assets\/scraper_48.png", "128": "assets\/scraper_128.png" }, "background": { "service_worker": "background\/index.js", "type": "module" }, "permissions": [], "content_scripts": [ { "js": [ "content\/import-index.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "web_accessible_resources": [ { "resources": [ "loading.gif" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, { "resources": [ "chunks\/*-*.js", "content\/index.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "action": [] } |