Punching App

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

O que é Punching App?

Punching App é uma extensão do Chrome desenvolvida por http://www.tintu.co.vu, e sua principal característica é "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Punching App

Baixe arquivos de extensão Punching App no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Punching App Punching App
ID naakiemaehkfnmgalafinnflkhoemdnl
URL Oficial https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl
Descrição A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Tamanho do Arquivo 225 KB
Contagem de Instalações 77
Versão Atual 0.1
Última Atualização 2017-04-27
Data de Publicação 2017-04-27
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor http://www.tintu.co.vu
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://www.tinturaju.com/smule_policy
Idiomas Suportados 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'"
}