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是由aSempruch開發的Chrome擴展程式,該擴展的主要功能是“Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…”。
擴展截圖
下載Zedder擴展crx文件
下載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 |
官方網址 | 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" ] } |