Fresh Coupons

Automatically find and apply discount coupon codes for Udemy courses

Что такое Fresh Coupons?

Fresh Coupons - это расширение Chrome, разработанное freshcoupons, и его основная функция - "Automatically find and apply discount coupon codes for Udemy courses".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Fresh Coupons

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

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

                        Buy paid Udemy courses for free/with discount without extra step! See all discounted courses right in Udemy and apply coupon code automatically or with a single click.                    

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

Название Fresh Coupons Fresh Coupons
ID pbnfeejfjlmmjfgnmmfpalhlpjidlgie
Официальный URL https://chromewebstore.google.com/detail/fresh-coupons/pbnfeejfjlmmjfgnmmfpalhlpjidlgie
Описание Automatically find and apply discount coupon codes for Udemy courses
Размер файла 349 KB
Количество установок 2,815
Текущая Версия 0.0.0.2
Последнее Обновление 2021-11-25
Дата публикации 2021-11-21
Рейтинг 4.38/5 Всего 16 оценок
Разработчик freshcoupons
Электронная почта freshcoupons.ext@gmail.com
Тип оплаты free
Официальный сайт расширения https://github.com/KajanM/fresh-coupons
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fresh Coupons",
    "version": "0.0.0.2",
    "description": "Automatically find and apply discount coupon codes for Udemy courses",
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content\/udemy-fresh-coupons-main-banner\/import-App.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/courses\/*",
                "https:\/\/www.udemy.com\/"
            ]
        },
        {
            "js": [
                "content\/udemy-course-details-page\/import-App.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*"
            ]
        },
        {
            "js": [
                "content\/udemy-course-listing-page\/import-App.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/courses\/search\/*",
                "https:\/\/www.udemy.com\/topic\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms"
    ],
    "homepage_url": "https:\/\/github.com\/KajanM\/fresh-coupons",
    "icons": {
        "48": "assets\/img\/icon-48.png",
        "128": "assets\/img\/icon-128.png"
    },
    "author": "Kajan M (https:\/\/www.kajanm.com\/)",
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "content\/udemy-fresh-coupons-main-banner\/App.js",
                "content\/udemy-course-details-page\/App.js",
                "content\/udemy-course-listing-page\/App.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/*"
            ]
        }
    ]
}