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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}