Punching App

A simple app which helps employees to track their punch in and punch out time. Support only day shift.

Co to jest Punching App?

Punching App to rozszerzenie Chrome opracowane przez http://www.tintu.co.vu, a jego główną funkcją jest „A simple app which helps employees to track their punch in and punch out time. Support only day shift. ”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Punching App

Pobierz pliki rozszerzeń Punching App w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A Simple app which helps to track punch data and make sure to spend necessary hours at office. Author : Tintu C Raju  web : http://www.tintu.co.vu                    

Podstawowe informacje o rozszerzeniu

Nazwa Punching App Punching App
ID naakiemaehkfnmgalafinnflkhoemdnl
Oficjalny URL https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl
Opis A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Rozmiar pliku 225 KB
Liczba instalacji 77
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-04-27
Data Publikacji 2017-04-27
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper http://www.tintu.co.vu
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności http://www.tinturaju.com/smule_policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Punching App",
    "version": "0.1",
    "description": "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ",
    "permissions": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Punching App",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/**"
            ],
            "js": [
                "myscript.js"
            ]
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}