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ファイルをダウンロード

Improved To Do Page For Google Classroom™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}