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" ] } |