Canvas Quiz De-suckifier

An attempt to introduce regex to canvas quizzes

什么是Canvas Quiz De-suckifier?

Canvas Quiz De-suckifier是由Skandalabrandur开发的Chrome扩展程序,该扩展的主要功能是“An attempt to introduce regex to canvas quizzes”。

扩展截图

screenshot

下载Canvas Quiz De-suckifier扩展crx文件

下载Canvas Quiz De-suckifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        NOTICE: "TAILOR MADE FOR REYKJAVÍK UNIVERSITY. MIGHT NOT WORK FOR PEOPLE OUTSIDE OF THE SCOPE UNLESS SOME CHANGES ARE MADE TO THE SOURCE CODE"

--------

This extension adds the clickable link "Populate with basic regex" besides the "Add another answer" link.
This is only intended for use with "Fill in the blank" and "Fill in multiple blanks" types of questions. The behaviour of this extension is undefined outside of this scope.

Basic syntax:
  [abc]: any character a, b or c
  --E is the empty character:
    [abc--E]: any character a, b, c, or nothing/empty character.
  --S is a flag that splits words on | inside the []
     Example: [--SLorem|Ipsum|--E] is either Lorem, Ipsum or nothing/empty character.

  {optional}: the string within {} becomes optional
    Example: '{A }boat' yields both "A boat" and "boat"

  $$variable$$: 
    To populate correctly for a variable in the 
    "Fill in multiple blanks" section, the regex query
    MUST START with $$variable$$ as a selector for your intended variable.
    Example: $$color1$$[--Syellow|blue|green]
      populates the "color1" variable with yellow, blue and green.

---

Version 0.1
Single fill in the blanks seem to work

Version 0.2
Multiple fill in the blanks work only when it is the first question

Version 0.3
Introduced $$variable$$ selection and a global limiter on variable names because of Canvas' global scope per input values (results in no more undefined behaviour for multiple questions per quiz)

Version 0.3.1
Added a matcher for question banks as well.                    

扩展基本信息

名称 Canvas Quiz De-suckifier Canvas Quiz De-suckifier
ID bmlilboiahnjdjhoimjaljknonmghoag
官方URL https://chromewebstore.google.com/detail/canvas-quiz-de-suckifier/bmlilboiahnjdjhoimjaljknonmghoag
简介 An attempt to introduce regex to canvas quizzes
文件大小 9.8 KB
安装次数 16
当前版本 0.3.1
更新时间 2018-09-22
上架时间 2018-09-22
开发者 Skandalabrandur
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Quiz De-suckifier",
    "version": "0.3.1",
    "description": "An attempt to introduce regex to canvas quizzes",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/reykjavik.instructure.com\/courses\/*\/quizzes\/*\/edit",
                "https:\/\/reykjavik.instructure.com\/courses\/*\/question_banks\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "expandDong.js"
    ],
    "icons": {
        "128": "icon128.png"
    }
}