Alice Keeler Class Roster

Organizes your roster of Google Classroom students into a neat little spreadsheet!

Τι είναι το Alice Keeler Class Roster;

Το Alice Keeler Class Roster είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://alicekeeler.com, και η κύρια λειτουργία του είναι "Organizes your roster of Google Classroom students into a neat little spreadsheet!".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Alice Keeler Class Roster

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

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

                        This extension links to your Google Classroom account so that you can easily create a roster of your students. Use this to print out a list of your students for a check off list, or use right in the spreadsheet to record information about each student.
Tip: Highlight an empty column and use the Insert menu to insert checkboxes. A super fun way to check kids off.

Thank you to high school student Matt Dolio for developing this Chrome extension for me!

Changelog:

1.1.5
- ACTUALLY fixed 30 student issue, pull all of the students you want to!
- Improved efficiency of alphabetization algorithm 
- Kept code unobfuscated, figured there was no real rhyme or reason why

1.1.4.1
- Removed some arbitrary constants
- Re-obfuscated code

1.1.4
- Attempted to fix 30 student issue, should pull unlimited
- Please leave feedback if this issue persists

1.1.3
- Code obfuscation and performance optimizations

1.1.2
- Page size removed, lifting limit from 20 classes to unlimited
- Optimized handling of class IDs in form
- Fixed issue where multiple classes were being pulled into the same sheet

1.1.1
- Sheet now pops up in new tab when created

1.1
- Minor bug fixes concerning list creation                    

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

Όνομα Alice Keeler Class Roster Alice Keeler Class Roster
ID naajkjmkhbpchkbhbcecjojhalhdddjg
Επίσημο URL https://chrome.google.com/webstore/detail/alice-keeler-class-roster/naajkjmkhbpchkbhbcecjojhalhdddjg
Περιγραφή Organizes your roster of Google Classroom students into a neat little spreadsheet!
Μέγεθος Αρχείου 36.47 KB
Αριθμός Εγκαταστάσεων 4,000
Τρέχουσα Έκδοση 1.1.5
Τελευταία Ενημέρωση 2021-04-17
Ημερομηνία Δημοσίευσης 2019-10-23
Αξιολόγηση 2.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής http://alicekeeler.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://alicekeeler.com/2019/02/04/google-classroom-class-roster-chrome-extension/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alice Keeler Class Roster",
    "version": "1.1.5",
    "description": "Organizes your roster of Google Classroom students into a neat little spreadsheet!",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "AliceKeeler Roster Pull",
        "default_popup": "index.html",
        "default_icon": "roster-icon.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "api.js"
        ],
        "persistent": false
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmlgPpTeJtYOO0L1atid6udGYPTGF419kPPU\/+TnDYbTOBP0qyfWHtbJsu5LZ1VVyI2YUifqqlAhDPNFp5ST4AQNmQ+B2QA9vGsoj6DhhzZIUzW+5k3ZieFFTseSrAYjaipf\/rte4AeBPgt3rAIom2aGlRvbyrjoo\/eM+OEi64NOTrDJS01cWPVFKNdhcBmTxyLvU4GYks91jCMVOOlW3Z2w7OqCXkvj3Ev2P064P3c7QhVtZNXx7B\/laucdnQkyxhGN1bpZ5HXcF7ft4kBsmafqKDmXg4aqxRvEW97LiHfwWwD6Yf0CGzEJoC5myJkOgvGYl+nDJzqf0azeuw\/ftwQIDAQAB",
    "oauth2": {
        "client_id": "278370431707-s3gumlgkg5h1vmn41tbnioh2abt1j0f9.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/classroom.profile.emails",
            "https:\/\/www.googleapis.com\/auth\/classroom.courses.readonly",
            "https:\/\/www.googleapis.com\/auth\/classroom.rosters.readonly",
            "https:\/\/www.googleapis.com\/auth\/spreadsheets",
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    },
    "permissions": [
        "identity",
        "activeTab"
    ]
}