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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names/notes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Etime Select एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}