Genesis: Classroom

Integrates tools for Google Classroom into Genesis. For Bernards Township district.

Genesis: Classroomคืออะไร?

Genesis: Classroom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ahogan.org และคุณลักษณะหลักของมันคือ "Integrates tools for Google Classroom into Genesis. For Bernards Township district."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Genesis: Classroom

ดาวน์โหลดไฟล์ส่วนขยาย Genesis: Classroom ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension integrates Google Classroom into Genesis.

You'll be asked to allow access for your account to:
- view classes: This will allow the extension to list your classes
- view classwork: This will allow the extension to copy/paste grades
- view contacts: This is required to copy/paste grades accurately

Adds a "Google Classroom" button to your grade screen, simply choose the right class and right assignment and the grades you've assigned in Google Classroom will be pasted directly into your Genesis gradebook.

Adds a "Google Classroom" button to your gradebook screen as well, allowing you to quickly create an assignment in Genesis based on information you already entered in Google Classroom.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Genesis: Classroom Genesis: Classroom
ID kapmjiiofgimkndalbfecmfdjhkcmopj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/genesis-classroom/kapmjiiofgimkndalbfecmfdjhkcmopj
คำอธิบาย Integrates tools for Google Classroom into Genesis. For Bernards Township district.
ขนาดไฟล์ 329 KB
จำนวนการติดตั้ง 247
เวอร์ชันปัจจุบัน 1.10
อัปเดตครั้งล่าสุด 2021-03-03
วันที่เผยแพร่ 2020-09-21
ผู้พัฒนา https://ahogan.org
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ahogan.org/genesis-g-classroom/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Genesis: Classroom",
    "version": "1.10",
    "version_name": "1.10",
    "description": "Integrates tools for Google Classroom into Genesis. For Bernards Township district.",
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/genesis.genesisedu.com\/bernardsboe\/sis\/view?module=gradebook&category=gradebook&tab1=gradeassignment&action=form*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "grade_assignment_page_1.js"
            ]
        },
        {
            "matches": [
                "*:\/\/genesis.genesisedu.com\/bernardsboe\/sis\/view?module=gradebook&category=gradebook&tab1=assignments*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery-ui-min.js",
                "gradebook_page.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "gapi.js",
            "jsrsasign-all-min.js",
            "jquery-3.3.1.min.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id_public": "294577676913-b8o5loen9din55fgfetlhtk52gg450pm.apps.googleusercontent.com",
        "client_id_dev": "356008557989-rpvqksl6sfhhvc95d5tng47glnm4qe6h.apps.googleusercontent.com",
        "api_key_public": "AIzaSyCtDBlfdQGaZtctslwOMhLGNYUWHsBrmTE",
        "api_key_dev": "AIzaSyBWP0U7jYGxIkl-GL5JwDUCQODu_mjnz2U",
        "client_id": "294577676913-b8o5loen9din55fgfetlhtk52gg450pm.apps.googleusercontent.com",
        "api_key": "AIzaSyCtDBlfdQGaZtctslwOMhLGNYUWHsBrmTE",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/classroom.coursework.students.readonly",
            "https:\/\/www.googleapis.com\/auth\/classroom.courses.readonly",
            "https:\/\/www.googleapis.com\/auth\/contacts.readonly",
            "profile"
        ]
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "icons": {
        "48": "icons\/icon48x48.png",
        "96": "icons\/icon96x96.png",
        "128": "icons\/icon128x128.png"
    },
    "web_accessible_resources": [
        "\/index.html",
        "\/head.html",
        "caret1.png",
        "caret2.png",
        "icons_black.png",
        "config.html"
    ]
}