Trello Grid Layout and Confetti Extension
This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.
Hvad er Trello Grid Layout and Confetti Extension?
Trello Grid Layout and Confetti Extension er en Chrome-udvidelse udviklet af https://web3point.co, og dens hovedfunktion er "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.".
Udvidelsesskærmbilleder
Download Trello Grid Layout and Confetti Extension-udvidelses-CRX-fil
Download Trello Grid Layout and Confetti Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
A lot of folks hate the long horizontal scrolling and a lot of vertical space is wasted by trello too. This extension displays your Trello cards in a grid fashion.
Furthermore, if you move a task from a card to another card, it would do a confetti animation. The destination card(s) just have to include 'finish' (not case sensitive) in their title anywhere. Some valid card title examples: "[Finished]","Finished & Completed","Meowfinished","literallyanythingfiNishDed:D" Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | miodejnpnefiklobgajiemkdlfhldggi |
| Officiel URL | https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi |
| Beskrivelse | This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task. |
| Filstørrelse | 98.81 KB |
| Antal Installationer | 456 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2020-10-04 |
| Udgivelsesdato | 2020-10-04 |
| Bedømmelse | 4.00/5 Samlet 4 Bedømmelser |
| Udvikler | https://web3point.co |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://web3point.co |
| Understøttede Sprog | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Trello Grid Layout and Confetti Extension",
"author": "Piyush Jha",
"manifest_version": 2,
"version": "1.1",
"description": "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/*"
],
"run_at": "document_end",
"js": [
"script.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
"audio.mp3"
],
"permissions": [
"tabs",
"https:\/\/trello.com\/*"
]
} | |