Board Summary for Trello

The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.

Was ist Board Summary for Trello?

Board Summary for Trello ist eine Chrome-Erweiterung, die von BoardSummary entwickelt wurde, und ihr Hauptmerkmal ist "The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Board Summary for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Board Summary for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The Board Summary for Trello extension retrieves and displays summary data for Trello boards. The board summary can include the number of active lists/cards in the board and a summary of due dates for cards in the board (past due/due now/due today/due soon). On board pages, the board summary data allows for creating nested boards, i.e. cards that reference other boards. Simply create a card whose description is the URL of another board, or use the add Nested Board button on the card edit page to pick an existing board or create a new board, and this card will be treated as an nested board.  This method allows these cards to be usable in other browsers and mobile apps without this extension.                    

Grundlegende Informationen zur Erweiterung

Name Board Summary for Trello Board Summary for Trello
ID aelhmieiiecnjpaklhmbbefkgdpelobf
Offizielle URL https://chromewebstore.google.com/detail/board-summary-for-trello/aelhmieiiecnjpaklhmbbefkgdpelobf
Beschreibung The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.
Dateigröße 71.67 KB
Installationsanzahl 2,427
Aktuelle Version 1.9.6
Letztes Update 2021-03-21
Veröffentlichungsdatum 2020-06-11
Bewertung 4.75/5 Insgesamt 20 Bewertungen
Entwickler BoardSummary
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://boardsummary.gitlab.io/
Hilfeseite URL https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/#support
URL der Datenschutzrichtlinien-Seite https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/docs
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Board Summary for Trello",
    "description": "The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.",
    "version": "1.9.6",
    "icons": {
        "128": "images\/icon-128.png",
        "48": "images\/icon-48.png",
        "32": "images\/icon-32.png",
        "19": "images\/icon-19.png",
        "16": "images\/icon-16.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "css": [
                "styles\/boardSummary.css"
            ],
            "js": [
                "scripts\/handlebars\/handlebars.runtime.min.js",
                "scripts\/templates.min.js",
                "scripts\/jquery\/jquery.min.js",
                "scripts\/boardSummary.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "page_action": {
        "default_icon": {
            "128": "images\/icon-128.png",
            "48": "images\/icon-48.png",
            "32": "images\/icon-32.png",
            "19": "images\/icon-19.png",
            "16": "images\/icon-16.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "webNavigation",
        "https:\/\/trello.com\/"
    ]
}