Udemy 2 pdf

This is a tool helps you to store your udemy notes as a handbook.

Что такое Udemy 2 pdf?

Udemy 2 pdf - это расширение Chrome, разработанное navidshad72, и его основная функция - "This is a tool helps you to store your udemy notes as a handbook.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Udemy 2 pdf

Скачайте файлы расширений Udemy 2 pdf в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Writing notes is a common activity a smart learner always do to have a handbook from the course. if you use Udemy courses this tool can helps you to convert your notes to a handbook just by one click.

How it works?
- Download the Udemy 2 pdf extension
- Go to your Udemy course
- Select note tab
- Select Udemy 2 pdf icon from your extensions and then 'Create pdf' button

Feel free to help me improve this tool :)                    

Основная информация о расширении

Название Udemy 2 pdf Udemy 2 pdf
ID iiffpbagnlljnepaahnnehojfiaifnmi
Официальный URL https://chromewebstore.google.com/detail/udemy-2-pdf/iiffpbagnlljnepaahnnehojfiaifnmi
Описание This is a tool helps you to store your udemy notes as a handbook.
Размер файла 1.49 MB
Количество установок 107
Текущая Версия 1.0.1
Последнее Обновление 2022-06-23
Дата публикации 2022-06-23
Рейтинг 2.00/5 Всего 1 оценок
Разработчик navidshad72
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy 2 pdf",
    "description": "This is a tool helps you to store your udemy notes as a handbook.",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/imgs\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/lecture\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "\/imgs\/icon.png"
    }
}