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文件
下載Airset Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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!" } } |