Airset Generator
Create datasets from supported mediums to analyze and classify on Kimola Cognitive.
Airset Generator là gì?
Airset Generator là một tiện ích mở rộng Chrome được phát triển bởi kimolahq, và tính năng chính của nó là "Create datasets from supported mediums to analyze and classify on Kimola Cognitive.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Airset Generator
Tải xuống các tệp mở rộng Airset Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Airset Generator helps you to create datasets by scraping comments and reviews from supported mediums. After grabbing texts, users are able to see the Airsets on Kimola Cognitive's dashboard, the no-code machine learning platform, ready to be analyzed and classified. 🚀 Before You Get Started - You need to use Kimola Cognitive (https://kimola.com/cognitive) to set up the API key and get your data. - You can find the API key at https://cognitive.kimola.com/models - See our Support Links below for tutorials ⚡️ While You're Scraping - Stay on the tab while scraping and don't change the tab. - Don't have too many tabs open while scraping; memory issues may interrupt your scraping experience. - Each website has a different style to scrape comments (some of them require scrolling etc.) please watch Youtube tutorials. 🔗 Support Links - Visit https://kimola.com/cognitive to sign up and use our extension. (You will need the API Key.) - See all supported websites here: https://bit.ly/supported-websites-airset-generator - Read all about the Airset Generator: https://bit.ly/all-about-airset-generator - Youtube Tutorials: https://bit.ly/airset-generator-youtube-tutorials - General Support: https://kimola.com/support/cognitive
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gejjhbmdieaablhpbpmejjchiidmedmn |
URL Chính Thức | https://chromewebstore.google.com/detail/airset-generator/gejjhbmdieaablhpbpmejjchiidmedmn |
Mô tả | Create datasets from supported mediums to analyze and classify on Kimola Cognitive. |
Kích Thước Tệp | 742 KB |
Số Lần Cài Đặt | 201 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-09-07 |
Ngày Phát Hành | 2022-08-04 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | kimolahq |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://kimola.com |
URL Trang Trợ Giúp | https://kimola.com/support |
URL Trang Chính Sách Bảo Mật | https://kimola.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Airset Generator", "manifest_version": 3, "version": "1.0", "description": "Create datasets from supported mediums to analyze and classify on Kimola Cognitive.", "icons": { "16": "\/images\/kimola-cognitive-16.png", "32": "\/images\/kimola-cognitive-32.png", "48": "\/images\/kimola-cognitive-48.png", "128": "\/images\/kimola-cognitive-128.png" }, "permissions": [ "storage", "activeTab" ], "background": { "service_worker": "background.js", "type": "module" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "Click to generate airsets!" } } |