ZEIT.IO

ZEIT.IO Time Tracking for Experts.

Τι είναι το ZEIT.IO;

Το ZEIT.IO είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://zeit.io, και η κύρια λειτουργία του είναι "ZEIT.IO Time Tracking for Experts.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ZEIT.IO

Λήψη αρχείων επέκτασης ZEIT.IO σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is the Chrome extension for ZEIT.IO. You can use the timer to start, pause, resume, and stop your times. After stopping your times you can assign them to a ZEIT.IO project and add a comment. With this extension you can track your times independently from the ZEIT.IO website. 

Through this extension you get integrations for various ticket systems, too. That means you can start the timer directly from a ticket in JIRA for example. And if you finish your time tracking, the comment field is pre-filled with the ticket ID and ticket title. Supported ticket systems are: 

 - JIRA
 - GitHub 
 - Gitlab 
 - YouTrack 
 - Zendesk 
 - Trello

When you tracked your time directly from a ticket, the ticket number is clickable in ZEIT.IO and directly linked to the ticket. And of course you can filter for a certain ticket number and see how many hours have been booked on a certain ticket.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ZEIT.IO ZEIT.IO
ID pinljemcmnhnngddfbnnpdpelecdonle
Επίσημο URL https://chromewebstore.google.com/detail/zeitio/pinljemcmnhnngddfbnnpdpelecdonle
Περιγραφή ZEIT.IO Time Tracking for Experts.
Μέγεθος Αρχείου 597 KB
Αριθμός Εγκαταστάσεων 39
Τρέχουσα Έκδοση 1.6.0
Τελευταία Ενημέρωση 2023-11-23
Ημερομηνία Δημοσίευσης 2021-10-05
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://zeit.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://zeit.io
URL της Σελίδας Πολιτικής Απορρήτου https://zeit.io/en/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ZEIT.IO",
    "version": "1.6.0",
    "manifest_version": 3,
    "description": "ZEIT.IO Time Tracking for Experts.",
    "homepage_url": "https:\/\/zeit.io",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/android-chrome-192x192.png",
                "icons\/android-chrome-512x512.png",
                "icons\/apple-touch-icon.png",
                "icons\/favicon-16x16.png",
                "icons\/favicon-32x32.png",
                "icons\/logo-48.png",
                "icons\/logo-128.png",
                "icons\/logo-512.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "ZEIT.IO",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "notifications",
        "background",
        "contextMenus",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*\/*\/issues\/*",
                "https:\/\/*.gitlab.com\/*\/*\/*\/issues\/*",
                "https:\/\/*.atlassian.net\/*\/*\/*\/*\/boards\/*",
                "https:\/\/*.atlassian.net\/browse\/*",
                "https:\/\/*.atlassian.net\/jira\/servicedesk\/projects\/*\/queues\/custom\/*",
                "https:\/\/*.zendesk.com\/*",
                "https:\/\/*\/*\/boards\/*",
                "https:\/\/*\/browse\/*",
                "https:\/\/trello.com\/*",
                "https:\/\/trello.com\/b\/*",
                "https:\/\/trello.com\/c\/*",
                "https:\/\/*.youtrack.cloud\/issue\/*",
                "https:\/\/*.youtrack.cloud\/issues*",
                "https:\/\/app.asana.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/integrations.js"
            ]
        }
    ],
    "commands": {
        "start-stop": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            },
            "description": "Start the timer."
        }
    }
}