CanvasTools

Customize your Canvas experience and do advanced things with your Canvas by Instructure account.

Что такое CanvasTools?

CanvasTools - это расширение Chrome, разработанное https://jczstudios.github.io, и его основная функция - "Customize your Canvas experience and do advanced things with your Canvas by Instructure account.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения CanvasTools

Скачайте файлы расширений CanvasTools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        FEATURES
• Customize your colors
• Message students from any tab
• Receive a notifications when someone messages you
• Download Canvas modules offline
• Submit files as assignments just by right-clicking
• Add custom elements to your content using the Editor
• Search through your pages, courses, groups, and assignments using the Chrome omnibar
• Adds a Mark All Read button to Conversations
• Automatically login
• Integrates with the Canvas API
• Use the editor to add custom buttons, badges, and more to your posts
• Easily set a footer with the editor then copy and paste it by right clicking in Canvas

Canvas administrators, please visit our website to learn more about how we can help your institution for free!

CanvasTools is an advanced set of tools that allows you to customize the way that Canvas by Instructure looks and do advanced things with your Canvas account. Change the default colors of Canvas even if your institution has already set them. The aesthetic changes you make with CanvasTools only appear on your Canvas. CanvasTools will work with any website using a Instructure subdomain. With CanvasTools, you can message your peers from any tab. No need to open Canvas just to message a friend. CanvasTools is constantly receiving new updates with new features and functions. We hope to better your life on Canvas!

UPDATE LOG: https://github.com/jczstudios/canvastools/wiki/Update-Log

*CanvasTools is not affiliated or owned by Instructure. Please do not contact Canvas for help with this extension, use the support tool instead.

**The creator of CanvasTools does not condone the use of these tools for any cheating, deception, spamming, etc. Please use at your own risk.                    

Основная информация о расширении

Название CanvasTools CanvasTools
ID gmdmngbeceipkojacdoljnllcnfpdgce
Официальный URL https://chromewebstore.google.com/detail/canvastools/gmdmngbeceipkojacdoljnllcnfpdgce
Описание Customize your Canvas experience and do advanced things with your Canvas by Instructure account.
Размер файла 2.11 MB
Количество установок 2,036
Текущая Версия 0.0.4.4
Последнее Обновление 2020-09-18
Дата публикации 2018-05-29
Рейтинг 4.64/5 Всего 11 оценок
Разработчик https://jczstudios.github.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://jczstudios.github.io/canvastools/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CanvasTools",
    "description": "Customize your Canvas experience and do advanced things with your Canvas by Instructure account.",
    "version": "0.0.4.4",
    "optional_permissions": [
        "*:\/\/*\/*",
        "downloads",
        ""
    ],
    "icons": {
        "128": "assets\/images\/icon.png"
    },
    "omnibox": {
        "keyword": "canvas"
    },
    "background": {
        "page": "background.html"
    },
    "commands": {
        "open-canvas": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Open Canvas"
        }
    },
    "content_scripts": [
        {
            "js": [
                "vendor\/jQuery\/jquery-3.2.1.min.js",
                "js\/custom-colors-content.js",
                "vendor\/bootstrap-tour\/js\/bootstrap-tour-standalone.min.js",
                "vendor\/handlebars\/js\/handlebars-v4.0.11.js",
                "js\/content.js",
                "vendor\/jszip\/FileSaver.js",
                "vendor\/jszip\/jszip.min.js",
                "js\/content\/download-course.js",
                "api\/canvas-code.js"
            ],
            "css": [
                "vendor\/bootstrap-tour\/css\/bootstrap-tour-standalone.min.css",
                "css\/content.css"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "CanvasTools"
    },
    "web_accessible_resources": [
        "js\/api.js",
        "assets\/*"
    ],
    "permissions": [
        "webRequest",
        "storage",
        "notifications",
        "alarms",
        "webRequestBlocking",
        "unlimitedStorage",
        "contextMenus",
        "*:\/\/*.instructure.com\/*"
    ],
    "options_page": "options.html",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.instructure.com\/*",
            "https:\/\/canvastools-demo.glitch.me\/*",
            "https:\/\/jczstudios.github.io\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com; object-src 'self'"
}