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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον FixingThings, και η κύρια λειτουργία του είναι "Etime enhancements that allow you to select unselectable charge numbers, track surplus hours, and apply custom project names/notes.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Etime Select
Λήψη αρχείων επέκτασης Etime Select σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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"
}
]
} | |