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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |