您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Flexible Learning Team
// ==UserScript== // @name NMIT Moodle for Developers // @namespace http://tampermonkey.net/ // @version 0.4 // @description Flexible Learning Team // @author Alan PT // @match https://ecampus.nmit.ac.nz/moodle/* // @grant GM_addStyle // ==/UserScript== (function() { })(); var Notes = document.createElement("div"); var rubricPage = document.getElementsByClassName('path-grade-grading-form-rubric'); if (rubricPage.length > 0) { Notes.innerHTML = "<div class='alert alert-block'><button type='button' class='close' data-dismiss='alert'>×</button><h1>Tips</h1><ol><li>Be consistent.</li><li>Base them around Learning Objectives</li><li>Use clear language</li><li>Embrace the positive.</li><li>Allow for Creativity.</li></ol><h2>Bloom</h2><ul><li>remember- Recognize,Recall</li><li>understand- Interpret, Classify, Summarize,Compare,Explain</li><li>apply- Execute, Implement</li><li>analyze- Differentiate, Organize, Attribute</li><li>evaluate- Check, Critique</li><li>create- Generate,Plan, Produce</li></ul><h2>SOLO</h2><ul><li>I don't know what is expected of me</li><li>I can identify,name,draw,label,match</li><li>I can describe,list outline,or combine</li><li>I can explain,give reasons,sequence,classify,compare,apply</li><li>I can generalise,state possible futures,create a hypothesis,argue,design.</li></ul><h2>SOLO Define</h2><ul><li>I need help to define</li><li>My definition has one relevant idea</li><li>My definition has several relevant ideas</li><li>I can link the ideas</li><li>And look at those linked ideas in a new way </li></ul></div>"; Notes.style = "top:0;right:0;position:fixed;z-index: 9999; width:400px; padding:20px; margin:20px;" document.body.appendChild(Notes); } GM_addStyle ( ` #page-grade-grading-form-rubric-edit .row-fluid .span9 {width: 100%;} #page-grade-grading-form-rubric-edit .container-fluid {max-width: 100%;} #page-grade-grading-form-rubric-edit .block-region{ display:none !important} #page-grade-grading-form-rubric-edit footer {display:none} #page-grade-grading-form-rubric-edit .fdescription {display:none} #page-grade-grading-form-rubric-edit .mform .fitem .felement {margin-left: 30px; margin-right: 0px; width: 90%} #page-grade-grading-form-rubric-edit .fitemtitle {margin-right:20px} #page-grade-grading-form-rubric-edit .gradingform_rubric {max-width: 100%;} ` );