The Scholarship System

Imports scholarship details into user's account

Что такое The Scholarship System?

The Scholarship System - это расширение Chrome, разработанное https://thescholarshipsystem.com, и его основная функция - "Imports scholarship details into user's account".

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

screenshot

Скачать файл CRX расширения The Scholarship System

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

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

                        The extension syncs with the scholarship system app which is available on 
iOS: https://itunes.apple.com/us/app/scholarship-system/id1102967717?mt=8

Learn more how to use both at https://thescholarshipsystem.com/app                    

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

Название The Scholarship System The Scholarship System
ID kdhfhegimikbpmpnmkcdbmeijhgifodc
Официальный URL https://chromewebstore.google.com/detail/the-scholarship-system/kdhfhegimikbpmpnmkcdbmeijhgifodc
Описание Imports scholarship details into user's account
Размер файла 801 KB
Количество установок 1,514
Текущая Версия 0.16
Последнее Обновление 2024-02-15
Дата публикации 2020-01-26
Рейтинг 4.86/5 Всего 7 оценок
Разработчик https://thescholarshipsystem.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.thescholarshipsystem.com
URL страницы помощи https://www.thescholarshipsystem.com
URL страницы политики конфиденциальности https://www.thescholarshipsystem.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "0.16",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "storage",
        "activeTab",
        "nativeMessaging",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon128.png"
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/contentInjected\/index.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/contentUI\/index.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon128.png",
                "icon34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}