The Scholarship System

Imports scholarship details into user's account

Hvad er The Scholarship System?

The Scholarship System er en Chrome-udvidelse udviklet af https://thescholarshipsystem.com, og dens hovedfunktion er "Imports scholarship details into user's account".

Udvidelsesskærmbilleder

screenshot

Download The Scholarship System-udvidelses-CRX-fil

Download The Scholarship System-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn The Scholarship System The Scholarship System
ID kdhfhegimikbpmpnmkcdbmeijhgifodc
Officiel URL https://chromewebstore.google.com/detail/the-scholarship-system/kdhfhegimikbpmpnmkcdbmeijhgifodc
Beskrivelse Imports scholarship details into user's account
Filstørrelse 801 KB
Antal Installationer 1,514
Nuværende Version 0.16
Senest Opdateret 2024-02-15
Udgivelsesdato 2020-01-26
Bedømmelse 4.86/5 Samlet 7 Bedømmelser
Udvikler https://thescholarshipsystem.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.thescholarshipsystem.com
Hjælpeside-URL https://www.thescholarshipsystem.com
URL til Fortrolighedspolitik Side https://www.thescholarshipsystem.com/privacy-policy
Understøttede Sprog 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}