Admin UI Tweaks for Canvas

Admin UI Tweaks for the busy Canvas LMS Admin

Admin UI Tweaks for Canvasคืออะไร?

Admin UI Tweaks for Canvas เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kajigga-dev และคุณลักษณะหลักของมันคือ "Admin UI Tweaks for the busy Canvas LMS Admin"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Admin UI Tweaks for Canvas

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

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

                        This extension makes small changes to the Canvas LMS admin interface. These changes currently include the following:

- Add Term SIS ID to terms listing page
- Add Account SIS ID's to all account and sub-account listing pages
- Add SIS Import details utility (see screenshot)
- On a section details page, if section was cross-listed, add text referring to the original course

Note: This is not an Instructure product. Please do not contact Canvas support with problems with this extension. If you are unsure whether a problem is due to this plugin, please disable it before submitting a ticket to Canvas support.  If you have questions about this extensions please visit https://groups.google.com/d/forum/admin-ui-tweaks-for-canvas-lms.                    

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

ชื่อ Admin UI Tweaks for Canvas Admin UI Tweaks for Canvas
ID ckfphpmobmoadbdkmffnffngagjohjmf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/admin-ui-tweaks-for-canva/ckfphpmobmoadbdkmffnffngagjohjmf
คำอธิบาย Admin UI Tweaks for the busy Canvas LMS Admin
ขนาดไฟล์ 220 KB
จำนวนการติดตั้ง 807
เวอร์ชันปัจจุบัน 0.0.0.1
อัปเดตครั้งล่าสุด 2015-03-26
วันที่เผยแพร่ 2015-03-26
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา kajigga-dev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Admin UI Tweaks for Canvas",
    "short_name": "Admin UI Tweaks for Canvas",
    "description": "Admin UI Tweaks for the busy Canvas LMS Admin",
    "manifest_version": 2,
    "version": "0.0.0.1",
    "icons": {
        "16": "icons\/screwdriver16.png",
        "48": "icons\/screwdriver48.png",
        "128": "icons\/screwdriver128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "declarativeContent",
        "https:\/\/*.instructure.com\/*"
    ],
    "options_page": "window.html",
    "browser_action": {
        "default_title": "Canvas Admin Tweaks",
        "default_icon": "icons\/screwdriver16.png",
        "default_popup": "window.html"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/require.js",
                "js\/myrequire.js",
                "js\/content.js"
            ],
            "css": [
                "css\/all.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/accounts\/*\/sub_accounts"
            ],
            "js": [
                "js\/tweaks\/subaccount_list_tweaks.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/accounts\/*\/users*"
            ],
            "js": [
                "js\/user_list_tweaks.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/accounts\/*\/terms*"
            ],
            "js": [
                "js\/term_list_tweaks.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/accounts\/*"
            ],
            "js": [
                "js\/course_list_tweaks.js"
            ],
            "css": [
                "css\/account_tweaks.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/accounts\/*\/sis_import*",
                "https:\/\/*.instructure.com\/accounts\/*\/sis_import#"
            ],
            "js": [
                "js\/bootstrap.min.js",
                "js\/jquery.ui.js",
                "js\/dust-core.min.js",
                "templates\/dust\/templates.js",
                "templates\/dust\/pr_popover_msg.html.js",
                "templates\/dust\/pr_popover_content.html.js",
                "templates\/dust\/show_more_sis.html.js",
                "templates\/dust\/user_details.html.js",
                "templates\/dust\/ws_popover_msg.html.js",
                "templates\/dust\/more_sis_load_more.html.js",
                "templates\/dust\/get_more_data_row.html.js",
                "templates\/dust\/more_sis_container.html.js",
                "js\/tweaks\/sis_import_extras.js"
            ],
            "css": [
                "css\/bootstrap.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/sections\/*",
                "https:\/\/*.instructure.com\/courses\/*\/settings"
            ],
            "js": [
                "js\/section_xlist_extra.js"
            ]
        }
    ]
}