Zedder
Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…
Apa itu Zedder?
Zedder adalah ekstensi Chrome yang dikembangkan oleh aSempruch, dan fitur utamanya adalah "Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Zedder
Unduh file ekstensi Zedder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Zedder |
ID | oclfiknhggkgkhibknacdlniepkggbal |
URL Resmi | https://chromewebstore.google.com/detail/zedder/oclfiknhggkgkhibknacdlniepkggbal |
Deskripsi | Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers… |
Ukuran File | 45.51 KB |
Jumlah Instalasi | 192 |
Versi Saat Ini | 5.0 |
Terakhir Diperbarui | 2020-03-19 |
Tanggal Publikasi | 2020-02-20 |
Penilaian | 5.00/5 Total 9 Penilaian |
Pengembang | aSempruch |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/aSempruch/ |
Bahasa yang Didukung | 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" ] } |