W-SOM Quirks Tab
Just some quirks.
Τι είναι το W-SOM Quirks Tab;
Το W-SOM Quirks Tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Venote, και η κύρια λειτουργία του είναι "Just some quirks.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης W-SOM Quirks Tab
Λήψη αρχείων επέκτασης W-SOM Quirks Tab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An extension made by a Wayne State Medical Student for Wayne State Medical students. v1.1 Changes: - Themes: Change the look and feel of the extension - Student Events Calendar Integration: View upcoming student events and get those SL hours. - Functioning Clock: (For those who use the new tab to keep track of time) - Updated Canvas and Echo360 features to reflect the new website. Key Features: 1. Personalized New Tab: Start with a new tab that includes: - Canvas Calendar Integration: Stay on top of your medical school schedule. - Pomodoro Timer: Manage your study sessions efficiently. - Current Weather Updates: Stay informed about the weather. - Quick Access Bookmarks: Navigate to your most important sites. - A Surprise Easter Egg: Discover something fun and unexpected! 2. Canvas Integration: - Auto-Scroll to Today's Date: Automatically scrolls to the current date in Canvas Modules for HBF courses, saving you the time and hassle. 3. Echo360 Customization Options: - Hide Timeline & Video Duration: Hide the lecture video timeline and remaining time on Echo360. - Notes Section Toggle: Gain more viewing space by removing the Notes section on the Echo360 video player. Easily toggle it back whenever needed. - Persist Timeline Display: Force the timeline stays visible on the Echo360 player (eliminating delays in its reappearance). Acknowledgements: Special thanks to @NekitCorp/chrome-extension-svelte-typescript-boilerplate for the extension starter code and @refact0r/alpine for the design inspiration, starter code and images. Developed by Venkata
Βασικές Πληροφορίες Επέκτασης
Όνομα | W-SOM Quirks Tab |
ID | ojoiiggpipacheefamkpinibpepfnnjl |
Επίσημο URL | https://chromewebstore.google.com/detail/w-som-quirks-tab/ojoiiggpipacheefamkpinibpepfnnjl |
Περιγραφή | Just some quirks. |
Μέγεθος Αρχείου | 30.35 MB |
Αριθμός Εγκαταστάσεων | 96 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2024-01-22 |
Ημερομηνία Δημοσίευσης | 2024-01-02 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Venote |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "W-SOM Quirks Tab", "description": "Just some quirks.", "version": "1.1", "manifest_version": 3, "icons": { "16": "src\/assets\/icons\/get_started16.png", "32": "src\/assets\/icons\/get_started32.png", "48": "src\/assets\/icons\/get_started48.png", "128": "src\/assets\/icons\/get_started128.png" }, "content_scripts": [ { "js": [ "assets\/index.ts-loader.2eccd7b2.js" ], "matches": [ "https:\/\/canvas.wayne.edu\/*", "https:\/\/echo360.org\/lesson*" ], "run_at": "document_end" } ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "action": { "default_icon": { "16": "src\/assets\/icons\/get_started16.png", "32": "src\/assets\/icons\/get_started32.png", "48": "src\/assets\/icons\/get_started48.png", "128": "src\/assets\/icons\/get_started128.png" } }, "chrome_url_overrides": { "newtab": "src\/newtab\/newtab.html" }, "permissions": [ "storage", "notifications", "alarms" ], "web_accessible_resources": [ { "matches": [ "https:\/\/canvas.wayne.edu\/*", "https:\/\/echo360.org\/*" ], "resources": [ "assets\/utils.2de08352.js", "assets\/index.ts.96d798a4.js" ], "use_dynamic_url": true } ] } |