Leave calculator

This extension will help employees view their total leave availed.

Vad är Leave calculator?

Leave calculator är en Chrome-tillägg utvecklad av Sameer N Miraj, och dess huvudfunktion är "This extension will help employees view their total leave availed.".

Ladda ner Leave calculator-förlängningens CRX-fil

Ladda ner Leave calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Open Timesheet website. Navigate to Monthly Tab. When the page completely loads you will be able to see a new tab besides Monthly called "Leaves". Clicking on the Leaves tab will load a pop-up box which will allow you to enter the start and end date. 

P.S.: The leaves tab will only be available when you're on the Monthly Tab.                    

Grundläggande Information om Tillägg

Namn Leave calculator Leave calculator
ID akkmdlpedjhgmkocalnldbihiajfoebp
Officiell webbadress https://chromewebstore.google.com/detail/leave-calculator/akkmdlpedjhgmkocalnldbihiajfoebp
Beskrivning This extension will help employees view their total leave availed.
Filstorlek 109 KB
Antal Installationer 24
Aktuell Version 0.0.2
Senast Uppdaterad 2016-12-29
Publiceringsdatum 2016-12-29
Utvecklare Sameer N Miraj
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sf-advanced-code-searcher.web.app
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leave calculator",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This extension will help employees view their total leave availed.",
    "author": "Sameer N Miraj",
    "permissions": [
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/timesheet\/MonthlyTimesheet\/MonthlyTimesheet"
            ],
            "js": [
                "jQuery.js",
                "contentScript.js",
                "jquery-ui.min.js"
            ],
            "css": [
                "jquery-ui.min.css",
                "main.css"
            ]
        }
    ]
}