Google Classroom User Redirect

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

Google Classroom User Redirect là gì?

Google Classroom User Redirect là một tiện ích mở rộng Chrome được phát triển bởi https://matthew-cash.com, và tính năng chính của nó là "Redirects all Google classroom requests to specify the correct Google user ID".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Classroom User Redirect

Tải xuống các tệp mở rộng Google Classroom User Redirect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
URL Chính Thức https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
Mô tả Redirects all Google classroom requests to specify the correct Google user ID
Kích Thước Tệp 6.64 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-08-31
Ngày Phát Hành 2020-08-31
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://matthew-cash.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MatthewCash/google-classroom-user-redirect
URL Trang Trợ Giúp https://github.com/MatthewCash/google-classroom-user-redirect/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}