Active Collab Inline Timers

Provides instant access to timers on any Active Collab page that lists tasks.

Active Collab Inline Timersคืออะไร?

Active Collab Inline Timers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://drminc.com และคุณลักษณะหลักของมันคือ "Provides instant access to timers on any Active Collab page that lists tasks."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Active Collab Inline Timers

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

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

                        Active Collab Inline Timers provides a streamlined interface for tracking, editing, and submitting time to your Active Collab site. You can start, stop, and pause timers from your my work or project pages. You can set defaults for your timers from the extensions popup. These defaults are on a per hostname basis (so if you're part of two different Active Collab sites, you can have individual preferences for each).

Active Collab Inline Timers was tested against Active Collab version 5.11.0.  It theoretically should work in all of version 5, but hasn't been tested as of yet.

Code for this extension is available on GitHub (https://github.com/drmproductions/ActiveCollabInlineTimers).

Originally developed by DRM Productions (https://drminc.com/).


Change Log

version 1.0.10
• Removed unused permissions

version 1.0.9
• Fixed timer position issues
• Position the timer popup menu so it's always visible
• Tweaked visual style to match latest ActiveCollab version

version 1.0
• Instant access to start any timer, in any project or the my work area, on any tab/window
• Better visibility into current time in each task
• Easily Track time in multiple tasks throughout the day
• Set Reasonable defaults for Minimum Time Entry, Rounding Interval, Job Type, and Is Billable
• Easily override the defaults that have been set
• Time is tracked on running timers even while tabs/windows are closed
• Run Timers even on tasks that you’re not assigned                    

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

ชื่อ Active Collab Inline Timers Active Collab Inline Timers
ID kdlddcggilfnadgpodhimkchdgcfobba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/active-collab-inline-time/kdlddcggilfnadgpodhimkchdgcfobba
คำอธิบาย Provides instant access to timers on any Active Collab page that lists tasks.
ขนาดไฟล์ 1 MB
จำนวนการติดตั้ง 787
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2022-03-23
วันที่เผยแพร่ 2019-10-14
คะแนน 4.86/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา https://drminc.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/drmproductions/ActiveCollabInlineTimers
URL หน้าช่วยเหลือ https://github.com/drmproductions/ActiveCollabInlineTimers/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Active Collab Inline Timers",
    "version": "2.0.0",
    "description": "Provides instant access to timers on any Active Collab page that lists tasks.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Active Collab Inline Timers",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "19": "icons\/icon16.png",
            "38": "icons\/icon38.png"
        }
    },
    "author": "DRM Productions",
    "background": {
        "scripts": [
            "server.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "homepage_url": "https:\/\/drminc.com",
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "utils.js",
        "page.js",
        "page.css"
    ]
}