YouTime - A YouTrack Timer

The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.

O que é YouTime - A YouTrack Timer?

YouTime - A YouTrack Timer é uma extensão do Chrome desenvolvida por https://philipp.ninja, e sua principal característica é "The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTime - A YouTrack Timer

Baixe arquivos de extensão YouTime - A YouTrack Timer 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

                        YouTrack's inbuilt time tracking does not offer great tools for starting and stopping timers. Other third party time trackers lack integration with YouTrack or do not add the tracked time to the issues. 

This extension provides a simple start/stop style timer which has no external dependencies but YouTrack itself. All tracked time is added to issues in the form of work items. No signup is required and no data is sent anywhere, but to your own YouTrack instance.                    

Informações Básicas da Extensão

Nome YouTime - A YouTrack Timer YouTime - A YouTrack Timer
ID aophgleohlolehodpabbddkfiiibecbj
URL Oficial https://chromewebstore.google.com/detail/youtime-a-youtrack-timer/aophgleohlolehodpabbddkfiiibecbj
Descrição The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.
Tamanho do Arquivo 1.03 MB
Contagem de Instalações 30
Versão Atual 1.0.3
Última Atualização 2020-12-06
Data de Publicação 2020-09-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://philipp.ninja
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTime - A YouTrack Timer",
    "short_name": "YouTime",
    "version": "1.0.3",
    "description": "The browser extension acts as a simple start\/stop timer, and adds the recorded time to YouTrack issues as workitems.",
    "permissions": [
        "storage",
        "alarms",
        "declarativeContent"
    ],
    "icons": {
        "16": "assets\/favicon.ico",
        "128": "assets\/icon_128.png",
        "256": "assets\/icon_256.png",
        "512": "assets\/icon_512.png"
    },
    "browser_action": {
        "default_popup": "index.html?#\/popup",
        "default_title": "YouTime",
        "default_icon": {
            "128": "assets\/icon_128.png",
            "256": "assets\/icon_256.png",
            "512": "assets\/icon_512.png"
        }
    },
    "options_page": "index.html?#\/options",
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "backgroundPage.js"
        ],
        "persistent": false
    }
}