Trello Topics

Add unlimited custom sticky links (Topics) to any Trello board.

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

Το Trello Topics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Justin Stewart, και η κύρια λειτουργία του είναι "Add unlimited custom sticky links (Topics) to any Trello board.".

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

screenshot
screenshot
screenshot

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

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

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

                        **DISCLAIMER:**
**This Chrome extension is not affiliated with, endorsed by, or sponsored by Trello and/or the Atlassian Corporation or any of their affiliates or subsidiaries.**

This Chrome extension's main purpose is to give you the ability to add custom links with labels called Topics to any Trello board.

The problem we're solving for: 
 
If you're using Trello for project management, you probably have hacked together a process for organizing project relevant information (designs, document charters, etc) into your board.  Trello has tried to address this with integrations that support common applications like Google Docs, Github, and Invision but what happens when you want a easily referenced sticky link that isn't supported by Trello PowerUps.  We've solved this in the past usually means creating a new list in your board just for references, but it's kind of a distracting graveyard.

Trello Topics provide an alternative solution.  Create unlimited topics that link out to project-related resources, all with the native feel of Trello.

This extension is new and under active development.  If you have feedback or feature requests, please visit our public Trello board below!

https://trello.com/b/a3Bcrkpe/feedback-and-feature-roadmap                    

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

Όνομα Trello Topics Trello Topics
ID dbkaeciodmnaienlpmlfhannmdfmjnpi
Επίσημο URL https://chromewebstore.google.com/detail/trello-topics/dbkaeciodmnaienlpmlfhannmdfmjnpi
Περιγραφή Add unlimited custom sticky links (Topics) to any Trello board.
Μέγεθος Αρχείου 56.06 KB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 0.6
Τελευταία Ενημέρωση 2018-04-21
Ημερομηνία Δημοσίευσης 2018-04-21
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Justin Stewart
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Topics",
    "version": "0.6",
    "description": "Add unlimited custom sticky links (Topics) to any Trello board.",
    "icons": {
        "128": "icons\/topics-icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/topics-icon-128.png",
            "32": "icons\/topics-icon-128.png"
        },
        "default_title": "Trello Topics"
    },
    "author": "Justin Stewart",
    "permissions": [
        "storage",
        "https:\/\/trello.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "trello_topics.js"
            ],
            "css": [
                "trello_topics.css"
            ]
        }
    ]
}