Zedder

Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…

Cos'è Zedder?

Zedder è un'estensione di Chrome sviluppata da aSempruch, e la sua funzione principale è "Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Zedder

Scarica i file di estensione Zedder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Zedder Zedder
ID oclfiknhggkgkhibknacdlniepkggbal
URL Ufficiale https://chromewebstore.google.com/detail/zedder/oclfiknhggkgkhibknacdlniepkggbal
Descrizione Displays all open shifts in one place on the Zed scheduling page. This extension will only be useful to employees of the Rutgers…
Dimensione del File 45.51 KB
Conteggio Installazioni 192
Versione Corrente 5.0
Ultimo Aggiornamento 2020-03-19
Data di Pubblicazione 2020-02-20
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore aSempruch
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/aSempruch/
Lingue Supportate 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"
    ]
}