Add Doc to Classroom

An extension to help teachers share Docs to Google Classroom

Add Doc to Classroomคืออะไร?

Add Doc to Classroom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Techniko และคุณลักษณะหลักของมันคือ "An extension to help teachers share Docs to Google Classroom"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add Doc to Classroom

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

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

                        Add Doc to Classroom puts a button onto the share screen in Google Docs™ which lets you share the current Google Doc (or Slides presentation) to Google Classroom™. The extension icon also lets you share normal pages as well as open the options page.

The button opens a new window which takes the Doc URL and gives it to Classroom (https://classroom.google.com/share?url=...), all on your computer.

From there, choose which class to share it to, change the description and customise the task just like you would on the normal Google Classroom™ website.

This extension is not associated with Google.

The extension uses the images of the Classroom Share button (https://developers.google.com/classroom/guides/sharebutton)

Contact [email protected] for questions, comments, bugs or feature requests                    

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

ชื่อ Add Doc to Classroom Add Doc to Classroom
ID omnmfbjgmackkcedkabbpdpcijahechl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/add-doc-to-classroom/omnmfbjgmackkcedkabbpdpcijahechl
คำอธิบาย An extension to help teachers share Docs to Google Classroom
ขนาดไฟล์ 158 KB
จำนวนการติดตั้ง 6,650
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2019-02-06
วันที่เผยแพร่ 2019-02-06
ผู้พัฒนา Techniko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://techniko.ml/add-doc-to-classroom/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_desc__",
    "version": "1.2.3",
    "icons": {
        "8": "icons\/icon8.png",
        "16": "icons\/icon16.png",
        "28": "icons\/icon28.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "lib\/chrome-promise.js",
            "background.js",
            "hot-reload.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/sharing\/*"
            ],
            "css": [
                "inject\/inject.css"
            ],
            "js": [
                "lib\/arrive.min.js",
                "inject\/inject.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "js": [
                "inject\/doc.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "js": [
                "inject\/doc.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "css": [
                "inject\/doc.css"
            ],
            "js": [
                "inject\/doc.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "images\/*",
        "lib\/roboto.ttf"
    ],
    "default_locale": "en"
}