Udemy Summary with OpenAI

Generate Udemy video summaries with OpenAI

Udemy Summary with OpenAI क्या है?

Udemy Summary with OpenAI Alessandro Annini द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate Udemy video summaries with OpenAI"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Udemy Summary with OpenAI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
            ]
        }
    ]
}