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…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}