Zedder
Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…
Τι είναι το Zedder;
Το Zedder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον aSempruch, και η κύρια λειτουργία του είναι "Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Zedder
Λήψη αρχείων επέκτασης Zedder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers Office of Information Technology that have access to the "Zed" portal. Now allows you to dismiss shifts that you are not interested in!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Zedder |
ID | oclfiknhggkgkhibknacdlniepkggbal |
Επίσημο URL | https://chromewebstore.google.com/detail/zedder/oclfiknhggkgkhibknacdlniepkggbal |
Περιγραφή | Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers… |
Μέγεθος Αρχείου | 45.51 KB |
Αριθμός Εγκαταστάσεων | 192 |
Τρέχουσα Έκδοση | 5.0 |
Τελευταία Ενημέρωση | 2020-03-19 |
Ημερομηνία Δημοσίευσης | 2020-02-20 |
Αξιολόγηση | 5.00/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | aSempruch |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/aSempruch/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zedder", "author": "aSempruch", "permissions": [ "storage" ], "version": "5.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/zed.rutgers.edu\/scheduling\/" ], "js": [ "jquery.js", "content.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "web_accessible_resources": [ "icon16.png" ] } |