ADP Copy & Paste

Allows to copy and paste rows in ADP

ADP Copy & Pasteคืออะไร?

ADP Copy & Paste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ADP copy and paste และคุณลักษณะหลักของมันคือ "Allows to copy and paste rows in ADP"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ADP Copy & Paste

ดาวน์โหลดไฟล์ส่วนขยาย ADP Copy & Paste ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extensions adds a Copy and Paste buttons in ADP > My Timecard page. 

You can easily copy an entire row and paste it everywhere else in the Timecard table.

Version 1.1.0
- Date Helpers Previous/Next Week/Month

Version 1.0.7
- Added Uruguay and Argentina holidays.

Version 1.0.6
- Added Colombia, Uruguay and Venezuela holidays.

Version 1.0.5
- Automatically fill timecard based on stored information. 
- Holidays earning code is now automatically set
- Fixed issue with hardcoded 2016 year. Added 2017 holidays for argentina.

Version 1.0.4
- Includes Stormtrooper Copy and qTip2 tooltips.

Version 1.0.3
- Includes support for argentinian holidays and non-working days (weekend).

To collaborate and improve the extension you can find the source code here:
https://github.com/fbridger/adpCopyPaste                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ADP Copy & Paste ADP Copy & Paste
ID pafppnkimfmkcajfkhikbjpajpmlafgb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adp-copy-paste/pafppnkimfmkcajfkhikbjpajpmlafgb
คำอธิบาย Allows to copy and paste rows in ADP
ขนาดไฟล์ 75.92 KB
จำนวนการติดตั้ง 30,284
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2017-05-30
วันที่เผยแพร่ 2017-05-30
คะแนน 4.72/5 รวมทั้งหมด 39 คะแนน
ผู้พัฒนา ADP copy and paste
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fbridger/adpCopyPaste
URL หน้าช่วยเหลือ https://github.com/fbridger/adpCopyPaste/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ADP Copy & Paste",
    "short_name": "ADP Copy & Paste",
    "description": "Allows to copy and paste rows in ADP",
    "version": "1.1.0",
    "author": "Federico Bridger",
    "homepage_url": "https:\/\/ar.linkedin.com\/in\/federicobridger",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.adp.com\/ezLaborManagerNet\/UI4\/Standard\/EmployeeServices\/TimeEntry\/*"
            ],
            "css": [
                "adpCopyPaste.css",
                "lib\/jquery.qtip.min.css"
            ],
            "js": [
                "lib\/jquery.js",
                "lib\/jquery.qtip.min.js",
                "helpers.js",
                "nonWorkableDays.js",
                "adpCopyPaste.js",
                "holidaysStore.js",
                "holidaysArgentina2016.js",
                "holidaysArgentina2017.js",
                "holidaysArgentinaFixed.js",
                "holidaysColombia.js",
                "holidaysUruguay2017.js",
                "holidaysUruguayFixed.js",
                "holidaysVenezuela2017.js",
                "holidaysVenezuelaFixed.js",
                "Holidays.js",
                "DateSelectorHelper.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}