Udemy Creation Date
Simple web extension to get the creation date of a course
Что такое Udemy Creation Date?
Udemy Creation Date - это расширение Chrome, разработанное H3lltronik, и его основная функция - "Simple web extension to get the creation date of a course".
Снимки экрана расширения
Скачать файл CRX расширения Udemy Creation Date
Скачайте файлы расширений Udemy Creation Date в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This simple web extension allow you to visualize the creation date of an Udemy course so you could make a better desicion in whether you buy it or not.
Just click on the extension icon and you are good to go 🧐 Основная информация о расширении
| Название | |
| ID | geefpmbdhidciekkfocjinkbefjegmkn |
| Официальный URL | https://chromewebstore.google.com/detail/udemy-creation-date/geefpmbdhidciekkfocjinkbefjegmkn |
| Описание | Simple web extension to get the creation date of a course |
| Размер файла | 41.42 KB |
| Количество установок | 666 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2021-10-09 |
| Дата публикации | 2021-10-09 |
| Рейтинг | 4.82/5 Всего 11 оценок |
| Разработчик | H3lltronik |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Udemy Creation Date",
"description": "Simple web extension to get the creation date of a course",
"version": "1.0",
"manifest_version": 2,
"background": {
"service_worker": "background.js"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "\/images\/favicon-32x32.png",
"default_title": "Udemy Wea!"
},
"permissions": [
"activeTab"
],
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"https:\/\/*.udemy.com\/*"
]
}
} | |