The Scholarship System

Imports scholarship details into user's account

Cos'è The Scholarship System?

The Scholarship System è un'estensione di Chrome sviluppata da https://thescholarshipsystem.com, e la sua funzione principale è "Imports scholarship details into user's account".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione The Scholarship System

Scarica i file di estensione The Scholarship System in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome The Scholarship System The Scholarship System
ID kdhfhegimikbpmpnmkcdbmeijhgifodc
URL Ufficiale https://chromewebstore.google.com/detail/the-scholarship-system/kdhfhegimikbpmpnmkcdbmeijhgifodc
Descrizione Imports scholarship details into user's account
Dimensione del File 801 KB
Conteggio Installazioni 1,514
Versione Corrente 0.16
Ultimo Aggiornamento 2024-02-15
Data di Pubblicazione 2020-01-26
Valutazione 4.86/5 Totale 7 Valutazioni
Sviluppatore https://thescholarshipsystem.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.thescholarshipsystem.com
URL della Pagina di Aiuto https://www.thescholarshipsystem.com
URL della Pagina della Politica sulla Privacy https://www.thescholarshipsystem.com/privacy-policy
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}