The Scholarship System

Imports scholarship details into user's account

Co to jest The Scholarship System?

The Scholarship System to rozszerzenie Chrome opracowane przez https://thescholarshipsystem.com, a jego główną funkcją jest „Imports scholarship details into user's account”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia The Scholarship System

Pobierz pliki rozszerzeń The Scholarship System w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa The Scholarship System The Scholarship System
ID kdhfhegimikbpmpnmkcdbmeijhgifodc
Oficjalny URL https://chromewebstore.google.com/detail/the-scholarship-system/kdhfhegimikbpmpnmkcdbmeijhgifodc
Opis Imports scholarship details into user's account
Rozmiar pliku 801 KB
Liczba instalacji 1,514
Aktualna Wersja 0.16
Ostatnia Aktualizacja 2024-02-15
Data Publikacji 2020-01-26
Ocena 4.86/5 Łącznie 7 Oceny
Deweloper https://thescholarshipsystem.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.thescholarshipsystem.com
Adres URL Strony Pomocy https://www.thescholarshipsystem.com
Adres URL Strony Polityki Prywatności https://www.thescholarshipsystem.com/privacy-policy
Obsługiwane Języki 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}