In The Loop for School Loop™ (beta)
A suite of features that improve the School Loop interface
Τι είναι το In The Loop for School Loop™ (beta);
Το In The Loop for School Loop™ (beta) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mahesh Murag & Akhil Palla, και η κύρια λειτουργία του είναι "A suite of features that improve the School Loop interface".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης In The Loop for School Loop™ (beta)
Λήψη αρχείων επέκτασης In The Loop for School Loop™ (beta) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An extension that improves the School Loop interface by letting users calculate what their grades would be after the teacher updates grades, allowing users to change the appearance of their School Loop page, and notifying users when their grades change. Privacy Policy: - All data is stored locally on the user's computer. No data about the user is collected or sent anywhere. - The username & password information, if entered by the user, is encrypted and stored locally. - Data stored (only if the user voluntarily allows and enters it): school subdomain (i.e. "lynbrook", "montavista", etc), username, password, overall grade percentages for each class (used for notifications), and theme selection/customization options Source code & more details available at https://github.com/maheshmurag/InTheLoop Features: - Add, delete, and edit grades - Chrome desktop notifications when grades change - Functions with both weight-based and points-based gradebooks - Add and edit categories - Calculate grade after the final exam - View total number of points per category (by hovering over category percentages) - Change the appearance of your School Loop page using pre-loaded or custom themes Created by Mahesh Murag and Akhil Palla Notes: - In The Loop might have trouble with extra credit assignments or grades in categories that don't exist. Please report any issues you see by emailing [email protected] or posting at https://github.com/maheshmurag/InTheLoop/issues - Rather than attempting to process an unusual format and potentially calculate incorrect results, the extension automatically disables grade calculation tools if it is unable to process a teacher's gradebook (usually because of an unusual grade entry format). - This extension is in beta, and lacks some features (such as processing custom letter grades like "A"/"B"/"C" etc). - The icon, "schoolloop.com", and any other School Loop assets used in this extension belong to School Loop, Inc. Any other assets belong to their respective owners.
Βασικές Πληροφορίες Επέκτασης
Όνομα | In The Loop for School Loop™ (beta) |
ID | ppigcngidmooiiafkelbilbojiijffag |
Επίσημο URL | https://chromewebstore.google.com/detail/in-the-loop-for-school-lo/ppigcngidmooiiafkelbilbojiijffag |
Περιγραφή | A suite of features that improve the School Loop interface |
Μέγεθος Αρχείου | 173 KB |
Αριθμός Εγκαταστάσεων | 2,545 |
Τρέχουσα Έκδοση | 0.6.1 |
Τελευταία Ενημέρωση | 2018-06-01 |
Ημερομηνία Δημοσίευσης | 2018-05-31 |
Αξιολόγηση | 4.62/5 Συνολικά 60 Αξιολογήσεις |
Προγραμματιστής | Mahesh Murag & Akhil Palla |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/maheshmurag/InTheLoop |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/maheshmurag/InTheLoop/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "In The Loop for School Loop\u2122 (beta)", "version": "0.6.1", "short_name": "In The Loop", "homepage_url": "http:\/\/maheshmurag.com\/InTheLoop", "description": "A suite of features that improve the School Loop interface", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "InTheLoop", "default_popup": "src\/browser_action\/browser_action.html" }, "background": { "scripts": [ "lib\/jquery-2.1.3.min.js", "lib\/aes.js", "src\/scripts\/autoRefresh.js", "src\/bg\/background.js" ], "pages": [ "src\/bg\/background.html" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.schoolloop.com\/", "https:\/\/*.schoolloop.com\/portal\/student_home*", "https:\/\/*.schoolloop.com\/news\/*", "https:\/\/*.schoolloop.com\/progress_report\/*", "http:\/\/*.schoolloop.com\/", "http:\/\/*.schoolloop.com\/portal\/student_home*", "http:\/\/*.schoolloop.com\/news\/*", "http:\/\/*.schoolloop.com\/progress_report\/*" ], "js": [ "lib\/jquery-2.1.3.min.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.schoolloop.com\/progress_report\/*", "http:\/\/*.schoolloop.com\/portal\/student_home*" ], "css": [ "styles\/buttons.css", "lib\/tipr.css" ], "js": [ "lib\/jquery-2.1.3.min.js", "lib\/tipr.min.js", "src\/scripts\/grades.js" ] }, { "matches": [ "https:\/\/*.schoolloop.com\/portal\/student_home*", "http:\/\/*.schoolloop.com\/portal\/student_home*" ], "css": [ "styles\/inject.css" ], "js": [ "lib\/jquery-2.1.3.min.js", "src\/scripts\/themer.js" ] } ], "permissions": [ "storage", "alarms", "notifications" ], "options_ui": { "page": "src\/options\/options.html", "chrome_style": true } } |