Improved To Do Page For Google Classroom™

Mark you assignments as done without having to open them

Improved To Do Page For Google Classroom™란 무엇입니까?

Improved To Do Page For Google Classroom™은(는) Digitally에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mark you assignments as done without having to open them"입니다.

확장 프로그램 스크린샷

screenshot

Improved To Do Page For Google Classroom™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds a mark as done button to the to do menu in Google Classroom™, you can use this to mark tasks as done without having to load them up. This is super useful for speeding up your workflow and helping you focus on what is important.                    

확장 프로그램 기본 정보

이름 Improved To Do Page For Google Classroom™ Improved To Do Page For Google Classroom™
ID lbeomecdcepneegoljjemmlkfpbfjokh
공식 URL https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh
설명 Mark you assignments as done without having to open them
파일 크기 47.48 KB
설치 횟수 2,130
현재 버전 3.21
최근 업데이트 2019-01-15
출시 날짜 2019-01-15
평점 4.83/5 총 6 개의 평점
개발자 Digitally
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Improved To Do Page For Google Classroom\u2122",
    "short_name": "Improved To Do Page For Google Classroom\u2122",
    "description": "Mark you assignments as done without having to open them",
    "version": "3.21",
    "browser_action": {
        "default_icon": "images\/icon96.png"
    },
    "icons": {
        "32": "images\/icon32.png",
        "36": "images\/icon36.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "96": "images\/icon96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ],
            "js": [
                "libraries\/jquery\/jquery-3.2.1.min.js",
                "scripts\/addMarkAsDoneButtons.js"
            ],
            "css": [
                "html\/customStyles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/classroom.google.com\/*\/a\/*\/details"
            ],
            "js": [
                "libraries\/jquery\/jquery-3.2.1.min.js",
                "scripts\/markAsDone.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "https:\/\/classroom.google.com\/*"
    ],
    "web_accessible_resources": [
        "html\/markAsDoneButton.html"
    ]
}