Freework Time Tracking & Task Management

Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!

Freework Time Tracking & Task Managementคืออะไร?

Freework Time Tracking & Task Management เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://freework.com และคุณลักษณะหลักของมันคือ "Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Freework Time Tracking & Task Management

ดาวน์โหลดไฟล์ส่วนขยาย Freework Time Tracking & Task Management ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Freework is where your digital HQ lives. 

It's the place to connect everyone in projects so teams can deliver better results, faster.

Freework aims to streamline the management of teams and projects for businesses, in order to simplify and speed up the planning and supervision of projects. We enable project based companies to work even more efficiently and easily - with one product.

- Timesheet Management, Task Management, Time Tracking (Chrome, Jira, Notion)
- Invoicing, Payment
- Personal Dashboard
- Company Dashboard
- Reports
- Budget Tracking
- Client Management
- Project Management                    

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

ชื่อ Freework Time Tracking & Task Management Freework Time Tracking & Task Management
ID kddocfenemhhkigcidkeleheclmkhhnh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/freework-time-tracking-ta/kddocfenemhhkigcidkeleheclmkhhnh
คำอธิบาย Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!
ขนาดไฟล์ 2.22 MB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.6.3
อัปเดตครั้งล่าสุด 2022-05-09
วันที่เผยแพร่ 2021-12-15
คะแนน 5.00/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา https://freework.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://freework.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Freework Time Tracking & Task Management",
    "description": "Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!",
    "version": "1.6.3",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject-task-create.esm.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "jira.esm.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "Freework"
    },
    "icons": {
        "16": "\/assets\/16.png",
        "48": "\/assets\/48.png",
        "128": "\/assets\/128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.esm.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "task-create.html",
                "assets\/fonts\/SFProText-Bold.ttf",
                "assets\/fonts\/SFProText-Regular.ttf",
                "assets\/fonts\/SFProText-Semibold.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "create-task": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "chromeos": "Ctrl+Shift+X",
                "linux": "Ctrl+Shift+X"
            },
            "description": "Create task",
            "global": false
        },
        "start-tracking": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            },
            "description": "Start tracking",
            "global": false
        }
    }
}