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 là gì?
Zedder là một tiện ích mở rộng Chrome được phát triển bởi aSempruch, và tính năng chính của nó là "Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Zedder
Tải xuống các tệp mở rộng Zedder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Zedder |
ID | oclfiknhggkgkhibknacdlniepkggbal |
URL Chính Thức | https://chromewebstore.google.com/detail/zedder/oclfiknhggkgkhibknacdlniepkggbal |
Mô tả | Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers… |
Kích Thước Tệp | 45.51 KB |
Số Lần Cài Đặt | 192 |
Phiên Bản Hiện Tại | 5.0 |
Cập Nhật Lần Cuối | 2020-03-19 |
Ngày Phát Hành | 2020-02-20 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | aSempruch |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/aSempruch/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |