The Scholarship System

Imports scholarship details into user's account

什麼是The Scholarship System?

The Scholarship System是由https://thescholarshipsystem.com開發的Chrome擴展程式,該擴展的主要功能是“Imports scholarship details into user's account”。

擴展截圖

screenshot

下載The Scholarship System擴展crx文件

下載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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}