Trello Card Numbers
Places card numbers on Trello cards
Cos'è Trello Card Numbers?
Trello Card Numbers è un'estensione di Chrome sviluppata da hal313, e la sua funzione principale è "Places card numbers on Trello cards".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Trello Card Numbers
Scarica i file di estensione Trello Card Numbers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds card numbers (ID's) to Trello cards. Trello cards have unique ID's associated with them, but they are not displayed. This extension displays the unique ID's of each card in order to visually identify it. This is useful, for example, when a team is discussing a Trello board and prefers to use ID's in place of content for the sake of clarity. Source code available on GitHub: https://github.com/hal313/trello-card-numbers-chrome-extension
Informazioni di Base sull'Estensione
Nome | Trello Card Numbers |
ID | ijnbgfbpkcnohomlcomegpocpkneblep |
URL Ufficiale | https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep |
Descrizione | Places card numbers on Trello cards |
Dimensione del File | 75.84 KB |
Conteggio Installazioni | 609 |
Versione Corrente | 0.0.10 |
Ultimo Aggiornamento | 2021-04-15 |
Data di Pubblicazione | 2018-04-22 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | hal313 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hal313/trello-card-numbers-chrome-extension |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.10", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Trello Card Numbers" }, "content_scripts": [ { "matches": [ "http:\/\/*.trello.com\/*", "https:\/\/*.trello.com\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end", "all_frames": false } ] } |