Trello Prime

Use Trello with some cool features.

Τι είναι το Trello Prime;

Το Trello Prime είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thearchitgarg, και η κύρια λειτουργία του είναι "Use Trello with some cool features.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Trello Prime

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

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

                        - You will be able to see the card ID when a card is open (HOT FEATURE)
- Change your custom background color w/o changing color for all the teammates.
- You can see the trello card short id on every card (which you can use to refrence cards in standup meetings or to name your git branches)
- Now you will be able to see the label text on each card.
- Turn ON/OFF any of these features anytime. 
- Cool UI & lightweight plugin(screenshots attached)
- Results in increased productivity and will help to name your branches.

More cool features coming soon so add this to your chrome so that it will be automatically updated whenever a new version will arrive. Write in the comments if you would like to have any new feature or you face any issue, I will try to respond as quickly as possible.                    

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

Όνομα Trello Prime Trello Prime
ID mkphpfbogfpojbbmbdhfcboleippkffh
Επίσημο URL https://chromewebstore.google.com/detail/trello-prime/mkphpfbogfpojbbmbdhfcboleippkffh
Περιγραφή Use Trello with some cool features.
Μέγεθος Αρχείου 149 KB
Αριθμός Εγκαταστάσεων 150
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2019-08-18
Ημερομηνία Δημοσίευσης 2019-08-18
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής thearchitgarg
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Prime",
    "short_name": "Trel-Prime",
    "description": "Use Trello with some cool features.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Trello Prime"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/trello.com\/*",
        "tabs",
        "storage"
    ]
}