Freework Time Tracking & Task Management

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

O que é Freework Time Tracking & Task Management?

Freework Time Tracking & Task Management é uma extensão do Chrome desenvolvida por https://freework.com, e sua principal característica é "Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Freework Time Tracking & Task Management

Baixe arquivos de extensão Freework Time Tracking & Task Management no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Freework Time Tracking & Task Management Freework Time Tracking & Task Management
ID kddocfenemhhkigcidkeleheclmkhhnh
URL Oficial https://chromewebstore.google.com/detail/freework-time-tracking-ta/kddocfenemhhkigcidkeleheclmkhhnh
Descrição Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!
Tamanho do Arquivo 2.22 MB
Contagem de Instalações 22
Versão Atual 1.6.3
Última Atualização 2022-05-09
Data de Publicação 2021-12-15
Classificação 5.00/5 Total de 11 Avaliações
Desenvolvedor https://freework.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://freework.com/privacy-policy
Idiomas Suportados 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
        }
    }
}