Udemy Summary with OpenAI
Generate Udemy video summaries with OpenAI
Udemy Summary with OpenAI란 무엇입니까?
Udemy Summary with OpenAI은(는) Alessandro Annini에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate Udemy video summaries with OpenAI"입니다.
확장 프로그램 스크린샷
Udemy Summary with OpenAI 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Generate Udemy video summaries using OpenAI. The user have to provide for OpenAI API Key. It uses "gpt-3.5-turbo" model (pricings here: https://openai.com/pricing#language-models). NOW WORKING WITH VIDEO OF ANY LENGTH! To use Udemy Summary with OpenAI extension, follow these steps: - Go to any Udemy lesson page. - Click the extension icon on the top right corner of the browser. - Click Generate Udemy Lesson Summary button. - You'll see a magic in a few seconds! All the summaries for every page are stored in the extension's local storage. If you want to delete the summaries, you can click Clear All Summaries button on the extension options page. PRIVACY POLICY This extension communicates with the OpenAI API in order to perform certain functions. In order to do this, it uses an API key provided by OpenAI. This extension uses only the data strictly necessary to perform its functions. It does not collect, store, share or use any personal data from the user, including the OpenAI API key. Browser storage is used to store the API key and summaries already generated in order to reduce OpenAI API usage. This data is not shared with any third party nor the author of this extension.
확장 프로그램 기본 정보
이름 | Udemy Summary with OpenAI |
ID | pknbmeegiiandmpcbldolgljempehfoe |
공식 URL | https://chromewebstore.google.com/detail/udemy-summary-with-openai/pknbmeegiiandmpcbldolgljempehfoe |
설명 | Generate Udemy video summaries with OpenAI |
파일 크기 | 213 KB |
설치 횟수 | 423 |
현재 버전 | 2.0 |
최근 업데이트 | 2023-05-18 |
출시 날짜 | 2023-01-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Alessandro Annini |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/AlessandroAnnini/udemy-openai |
도움말 페이지 URL | https://github.com/AlessandroAnnini/udemy-openai/issues |
개인정보 보호 정책 페이지 URL | https://raw.githubusercontent.com/AlessandroAnnini/udemy-openai/main/privacy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Generate Udemy video summaries with OpenAI", "version": "2.0", "manifest_version": 3, "name": "Udemy Summary with OpenAI", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "service_worker": "background.bundle.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.udemy.com\/course\/*\/learn\/lecture\/*", "https:\/\/api.openai.com\/" ], "action": { "default_popup": "popup.html", "default_icon": "icon-48.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/www.udemy.com\/course\/*\/learn\/lecture\/*" ], "js": [ "contentScript.bundle.js" ] } ] } |