tickety-tick

A browser extension that helps you to create commit messages and branch names from story trackers.

Τι είναι το tickety-tick;

Το tickety-tick είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ticketytickbitcrowd, και η κύρια λειτουργία του είναι "A browser extension that helps you to create commit messages and branch names from story trackers.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης tickety-tick

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

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

                        At bitcrowd we love conventions. One of them is how we name branches and commits. This makes it easy to relate a particular branch or commit to a certain ticket. Just open a ticket or select it and click on the tickety-tick button. You will see a dialog where you can copy a branch name or the commit message.

Branches by default always follow the format type/id-title, where type can be one of feature, bug, chore etc., id is the identifier of the ticket in your ticketing system and title is a lowercase, dasherized version of the ticket title.

Commit messages default to the format [#id] title.

If you have different conventions regarding commit messages, branch names or just use a different source management tool, you can also customize the output format to your needs in the preferences.

Tickety-Tick helps you create branches and commits for a few ticket systems.

Currently, we support:

- GitHub
- GitLab
- Jira
- Linear.app
- Notion
- Tara
- Trello                    

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

Όνομα tickety-tick tickety-tick
ID ciakolhgmfijpjbpcofoalfjiladihbg
Επίσημο URL https://chromewebstore.google.com/detail/tickety-tick/ciakolhgmfijpjbpcofoalfjiladihbg
Περιγραφή A browser extension that helps you to create commit messages and branch names from story trackers.
Μέγεθος Αρχείου 2.03 MB
Αριθμός Εγκαταστάσεων 192
Τρέχουσα Έκδοση 5.1.1
Τελευταία Ενημέρωση 2023-04-22
Ημερομηνία Δημοσίευσης 2020-06-30
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής ticketytickbitcrowd
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/bitcrowd/tickety-tick
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "tickety-tick",
    "version": "5.1.1",
    "description": "A browser extension that helps you to create commit messages and branch names from story trackers.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage"
    ],
    "browser_action": {
        "default_title": "Git Branch\/Message",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "64": "icon-64.png"
        },
        "theme_icons": [
            {
                "light": "icon-light-64.png",
                "dark": "icon-64.png",
                "size": 64
            },
            {
                "light": "icon-light-32.png",
                "dark": "icon-32.png",
                "size": 32
            },
            {
                "light": "icon-light-16.png",
                "dark": "icon-16.png",
                "size": 16
            }
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+T",
                "mac": "MacCtrl+T"
            }
        }
    },
    "content_security_policy": "default-src 'none'; img-src 'self' data:; style-src 'self'; script-src 'self';"
}