Zedder
Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…
Was ist Zedder?
Zedder ist eine Chrome-Erweiterung, die von aSempruch entwickelt wurde, und ihr Hauptmerkmal ist "Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…".
Erweiterungsscreenshots
Zedder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Zedder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Zedder |
ID | oclfiknhggkgkhibknacdlniepkggbal |
Offizielle URL | https://chromewebstore.google.com/detail/zedder/oclfiknhggkgkhibknacdlniepkggbal |
Beschreibung | Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers… |
Dateigröße | 45.51 KB |
Installationsanzahl | 192 |
Aktuelle Version | 5.0 |
Letztes Update | 2020-03-19 |
Veröffentlichungsdatum | 2020-02-20 |
Bewertung | 5.00/5 Insgesamt 9 Bewertungen |
Entwickler | aSempruch |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/aSempruch/ |
Unterstützte Sprachen | 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" ] } |