eHarmony Chrome Extension

Clock In/Out from chrome extension

eHarmony Chrome Extension là gì?

eHarmony Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi erez, và tính năng chính của nó là "Clock In/Out from chrome extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng eHarmony Chrome Extension

Tải xuống các tệp mở rộng eHarmony Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension for users of the application called E-Harmony.
E-harmony is used by companies. Once the employee comes to work, he/she should clock in, so the manager can see that he/she is in the office. The same situation happens when the employee is going out of office. (she/he should clock out).
Based on this clock ins/clocks out the application generates various reports for managers. 
Currently clock in/clock out is done within 4-5 steps:
* user needs to login to the application
* user needs to go specific page
* user needs to filter grid to choose current date row
* user needs to clock in
* user needs to save

That is why we came up with chrome extension, it makes life of employees easier. We hope, we have achieved this goal.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên eHarmony Chrome Extension eHarmony Chrome Extension
ID dhhiangfpdoigoljilnibodicldceood
URL Chính Thức https://chromewebstore.google.com/detail/eharmony-chrome-extension/dhhiangfpdoigoljilnibodicldceood
Mô tả Clock In/Out from chrome extension
Kích Thước Tệp 261 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2021-01-15
Ngày Phát Hành 2020-11-14
Nhà Phát Triển erez
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "eHarmony Chrome Extension",
    "version": "1.3",
    "description": "Clock In\/Out from chrome extension",
    "permissions": [
        "declarativeContent",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "alarms",
        "activeTab"
    ],
    "options_page": "src\/settings.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "src\/images\/icons25.png",
            "32": "src\/images\/icons25.png",
            "48": "src\/images\/icons25.png",
            "128": "src\/images\/icons25.png"
        }
    },
    "icons": {
        "16": "src\/images\/icons25.png",
        "32": "src\/images\/icons25.png",
        "48": "src\/images\/icons25.png",
        "128": "src\/images\/icons25.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ]
}