Punching App

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

Was ist Punching App?

Punching App ist eine Chrome-Erweiterung, die von http://www.tintu.co.vu entwickelt wurde, und ihr Hauptmerkmal ist "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".

Erweiterungsscreenshots

screenshot

Punching App-Erweiterungs-CRX-Datei herunterladen

Laden Sie Punching App-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Punching App Punching App
ID naakiemaehkfnmgalafinnflkhoemdnl
Offizielle URL https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl
Beschreibung A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Dateigröße 225 KB
Installationsanzahl 77
Aktuelle Version 0.1
Letztes Update 2017-04-27
Veröffentlichungsdatum 2017-04-27
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler http://www.tintu.co.vu
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://www.tinturaju.com/smule_policy
Unterstützte Sprachen 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'"
}