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