Canvas Group Selection De-suckifier

Allows you to join groups faster

Τι είναι το Canvas Group Selection De-suckifier;

Το Canvas Group Selection De-suckifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Skandalabrandur, και η κύρια λειτουργία του είναι "Allows you to join groups faster".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Canvas Group Selection De-suckifier

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

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

                        Note: This is made specifically (and unoficially) for a website for a certain Icelandic university.
English further down

Íslenska:
Þetta "extension" er bara virkt á group síðu fyrir námskeið (people → groups)

Nýtt í 0.7.2:
    Getur núna stimplað inn groupID eða einfaldlega slóðann á grúppu og
    joinað samstundis. (T.d. ef vinur er búinn að join-a þá getur hann látið
    þig hafa slóðann)
    T.d: https://reykjavik.instructure.com/groups/123456789

Nýtt í 0.7.3:
    Getur hlaðið inn hópum en skippað x*100 fyrstu

Í stað þess að bíða í ~2 sekúndur eftir að hlaðið er inn 10 hópum í einu með scrolli þá færðu að bíða í ~2 til 4 sekúndur eftir að hlaðið er inn 100 hópum í einu í bakgrunni.

Nýtt í 0.8.0:
    Getur leitað eftir nafni eftir að hafa ýtt á "hlaða inn hópum"

Nýtt í 0.9.0:
    Getur scrapað downloads í modules (beta)
    Getur scrapað glærum úr Echo360 (beta)

Ekkert sérstakt þarf að gera nema hafa þetta extension virkt eða "enabled".  

English:
This extension is only active on the group page for a given course (people → groups)

New in 0.7.2:
    You can now join a group instantly by giving the groupID or providing a
    link to your desired group (f.x. if a friend has joined a group and he can
    give you the link to his group)
    F.x: https://reykjavik.instructure.com/groups/123456789
New in 0.7.3:
    You can now load groups but skip the first x*100
Instead of waiting for ~2 seconds for 10 groups to be loaded at a time you get to wait around 2-4 seconds for 100 groups, loaded in the background.

New in 0.8.0:
    You can now search by name after you've loaded groups.

New in 0.9.0:
    Can mass download from modules (beta)
    Can mass download presentation slides from Echo360 (beta)

Nothing special has to be done to install the extension, other than needing to have it enabled.                    

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

Όνομα Canvas Group Selection De-suckifier Canvas Group Selection De-suckifier
ID efdcolfjilgfiicmkomloleddoebemma
Επίσημο URL https://chromewebstore.google.com/detail/canvas-group-selection-de/efdcolfjilgfiicmkomloleddoebemma
Περιγραφή Allows you to join groups faster
Μέγεθος Αρχείου 12.85 KB
Αριθμός Εγκαταστάσεων 56
Τρέχουσα Έκδοση 0.9.0
Τελευταία Ενημέρωση 2019-03-15
Ημερομηνία Δημοσίευσης 2019-03-15
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Skandalabrandur
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Group Selection De-suckifier",
    "version": "0.9.0",
    "description": "Allows you to join groups faster",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/reykjavik.instructure.com\/courses\/*\/groups"
            ],
            "run_at": "document_idle",
            "js": [
                "inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/echo360.org.uk\/section\/*\/home"
            ],
            "run_at": "document_idle",
            "js": [
                "inject_echo.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/reykjavik.instructure.com\/courses\/*\/modules"
            ],
            "run_at": "document_idle",
            "js": [
                "inject_modules.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "arg.js",
        "draggable.js",
        "echo_beta.js",
        "moduleScraperNC.js",
        "moduleMessage.js"
    ],
    "icons": {
        "128": "icon128.png"
    }
}