ADP Copy & Paste

Allows to copy and paste rows in ADP

ADP Copy & Paste란 무엇입니까?

ADP Copy & Paste은(는) ADP copy and paste에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to copy and paste rows in ADP"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ADP Copy & Paste 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}