Canvas Page Folders

Organises Pages into folders in Canvas LMS

Τι είναι το Canvas Page Folders;

Το Canvas Page Folders είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://oldpike.bxtrom.eu, και η κύρια λειτουργία του είναι "Organises Pages into folders in Canvas LMS".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Canvas Page Folders

Λήψη αρχείων επέκτασης Canvas Page Folders σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Allows organisation of Pages into folders in Canvas LMS

Please see https://youtu.be/aziV_vbLRsE for instruction video

This extension allows you to create folders and sub-folders in which to organise Canvas Pages. Folders can be renamed, moved or deleted. The extension checks for updates to the pages such as renaming, creation or deletion, on a regular and customisable basis.

In an experimental feature, folder structures can also be shared between users who have the extension installed, in which case a designated page will serve as storage for the structure information and with which the users' folder info can be synced.

Please note: Presently, only Canvas spaces hosted by domains of the type 
*.instructure.com/* 
can use the extension, with the addition of the following:
canvas.gu.se/*
canvas.qub.ac.uk/* 
canvas.wisc.edu/*
canvas.wu.ac.at/*
canvas.brown.edu/*

If you wish to have another host URL incorporated in the list of supported hosts, please write a request to [email protected].                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Canvas Page Folders Canvas Page Folders
ID oedghiclldgapmpgcplfjjfdkfehlkpp
Επίσημο URL https://chromewebstore.google.com/detail/canvas-page-folders/oedghiclldgapmpgcplfjjfdkfehlkpp
Περιγραφή Organises Pages into folders in Canvas LMS
Μέγεθος Αρχείου 561 KB
Αριθμός Εγκαταστάσεων 209
Τρέχουσα Έκδοση 0.9.16
Τελευταία Ενημέρωση 2024-02-06
Ημερομηνία Δημοσίευσης 2021-09-29
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://oldpike.bxtrom.eu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://oldpike.bxtrom.eu/
Διεύθυνση URL της Σελίδας Βοήθειας https://oldpike.bxtrom.eu/
URL της Σελίδας Πολιτικής Απορρήτου https://oldpike.bxtrom.eu/privacy_policy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Canvas Page Folders",
    "version": "0.9.16",
    "description": "Organises Pages into folders in Canvas LMS",
    "icons": {
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/bxtrom.eu\/stats\/cpf-stats\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*",
                "http:\/\/*.instructure.com\/*",
                "https:\/\/canvas.gu.se\/*",
                "https:\/\/canvas.qub.ac.uk\/*",
                "https:\/\/canvas.wisc.edu\/*",
                "https:\/\/canvas.wu.ac.at\/*",
                "https:\/\/canvas.brown.edu\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png",
                "local.png",
                "sync.png",
                "backupIcon.png",
                "menuIcon.png",
                "optIcon.png",
                "resetIcon.png",
                "syncIcon.png",
                "checkAll.png",
                "uncheckAll.png",
                "inactivate.png",
                "block_check.png",
                "nb.png"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*",
                "http:\/\/*.instructure.com\/*",
                "https:\/\/canvas.gu.se\/*",
                "https:\/\/canvas.qub.ac.uk\/*",
                "https:\/\/canvas.wisc.edu\/*",
                "https:\/\/canvas.wu.ac.at\/*"
            ]
        }
    ]
}