Airset Generator
Create datasets from supported mediums to analyze and classify on Kimola Cognitive.
Airset Generator란 무엇입니까?
Airset Generator은(는) kimolahq에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create datasets from supported mediums to analyze and classify on Kimola Cognitive."입니다.
확장 프로그램 스크린샷
Airset Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | gejjhbmdieaablhpbpmejjchiidmedmn |
공식 URL | https://chromewebstore.google.com/detail/airset-generator/gejjhbmdieaablhpbpmejjchiidmedmn |
설명 | Create datasets from supported mediums to analyze and classify on Kimola Cognitive. |
파일 크기 | 742 KB |
설치 횟수 | 201 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-09-07 |
출시 날짜 | 2022-08-04 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | kimolahq |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://kimola.com |
도움말 페이지 URL | https://kimola.com/support |
개인정보 보호 정책 페이지 URL | https://kimola.com/privacy-policy |
지원되는 언어 | 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!" } } |