Google Classroom User Redirect

Redirects all Google classroom requests to specify the correct Google user ID

Google Classroom User Redirect란 무엇입니까?

Google Classroom User Redirect은(는) https://matthew-cash.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects all Google classroom requests to specify the correct Google user ID"입니다.

확장 프로그램 스크린샷

screenshot

Google Classroom User Redirect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Many people have a separate google account for personal use and educational use. When visiting google classroom from an external account (e.g. gmail), the classroom link is opened in the primary account, which for many people is not their educational account. This extension fixes this problem by changing the Google user ID in the browser to match the user ID for the user's educational account                    

확장 프로그램 기본 정보

이름 Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
공식 URL https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
설명 Redirects all Google classroom requests to specify the correct Google user ID
파일 크기 6.64 KB
설치 횟수 19
현재 버전 1.0.0
최근 업데이트 2020-08-31
출시 날짜 2020-08-31
평점 5.00/5 총 2 개의 평점
개발자 https://matthew-cash.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MatthewCash/google-classroom-user-redirect
도움말 페이지 URL https://github.com/MatthewCash/google-classroom-user-redirect/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Classroom User Redirect",
    "short_name": "Classroom User Redirect",
    "description": "Redirects all Google classroom requests to specify the correct Google user ID",
    "version": "1.0.0",
    "options_page": "views\/options.html",
    "permissions": [
        "*:\/\/classroom.google.com\/",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "Google Classroom User Redirect"
    }
}