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…”。

扩展截图

screenshot
screenshot

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