The Scholarship System

Imports scholarship details into user's account

What is The Scholarship System?

The Scholarship System is a Chrome extension developed by https://thescholarshipsystem.com, and its main feature is "Imports scholarship details into user's account".

Extension Screenshots

screenshot

Download The Scholarship System Extension CRX File

Download The Scholarship System extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name The Scholarship System The Scholarship System
ID kdhfhegimikbpmpnmkcdbmeijhgifodc
Official URL https://chromewebstore.google.com/detail/the-scholarship-system/kdhfhegimikbpmpnmkcdbmeijhgifodc
Description Imports scholarship details into user's account
File Size 801 KB
Installation Count 1,514
Current Version 0.16
Last Updated 2024-02-15
Publish Date 2020-01-26
Rating 4.86/5 Total 7 Ratings
Developer https://thescholarshipsystem.com
Email [email protected]
Payment Type free
Extension Website https://www.thescholarshipsystem.com
Help Page URL https://www.thescholarshipsystem.com
Privacy Policy Page URL https://www.thescholarshipsystem.com/privacy-policy
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}