Punching App

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

Punching Appとは何ですか?

Punching Appはhttp://www.tintu.co.vuによって開発されたChromeの拡張機能で、その主な機能は「A simple app which helps employees to track their punch in and punch out time. Support only day shift. 」です。

拡張機能のスクリーンショット

screenshot

Punching App拡張機能のCRXファイルをダウンロード

Punching App拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Punching App Punching App
ID naakiemaehkfnmgalafinnflkhoemdnl
公式URL https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl
説明 A simple app which helps employees to track their punch in and punch out time. Support only day shift.
ファイルサイズ 225 KB
インストール数 77
現在のバージョン 0.1
最終更新日 2017-04-27
公開日 2017-04-27
評価 5.00/5 合計 3 レビュー
開発者 http://www.tintu.co.vu
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL http://www.tinturaju.com/smule_policy
対応言語 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'"
}