Etime Select

Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names/notes.

Etime Select란 무엇입니까?

Etime Select은(는) FixingThings에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names/notes."입니다.

확장 프로그램 스크린샷

screenshot

Etime Select 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Etime Select enables selecting & copying unselectable text in DeltekTC (etime) software.

[Update 6.9.1] Added surplus hour counter. This counts how many hours ahead you are based on the last day's entry you've entered.

[Update 6.9.2] Added button for project settings that allowed you to save custom project name & project notes. Fixed bug so now weekend hours are properly handled if they are the last entered.

[Update 6.9.3] Fixed Major bug on storing custom naming by position instead of charge num. New update should clear stored data and force users to re-enter data that will be correctly displayed. Also enabled users to hit button in popup to manually clear stored data.
Smaller Changes: button now added dynamically as users add new nums or change between months.  One save button on project settings.                    

확장 프로그램 기본 정보

이름 Etime Select Etime Select
ID jigkhbciedldnfklfmjgakcogbcccjde
공식 URL https://chromewebstore.google.com/detail/etime-select/jigkhbciedldnfklfmjgakcogbcccjde
설명 Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names/notes.
파일 크기 85.17 KB
설치 횟수 0
현재 버전 6.9.3
최근 업데이트 2019-12-05
출시 날짜 2019-12-05
평점 5.00/5 총 2 개의 평점
개발자 FixingThings
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Etime Select",
    "short_name": "EtimeSelect",
    "version": "6.9.3",
    "description": "Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names\/notes.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/DeltekTC\/*"
            ],
            "css": [
                "button_styling.css"
            ],
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}