[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
[DEPRECATED] List Layouts for Trello क्या है?
[DEPRECATED] List Layouts for Trello Natalie Chouinard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow Trello lists to be displayed vertically or in a grid."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में [DEPRECATED] List Layouts for Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
***DEPRECATED*** This Chrome extension is now deprecated. Please consider these alternatives: Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello ***DEPRECATED*** The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon.
एक्सटेंशन की मूल जानकारी
नाम | [DEPRECATED] List Layouts for Trello |
ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
आधिकारिक URL | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
विवरण | Allow Trello lists to be displayed vertically or in a grid. |
फ़ाइल का आकार | 10.65 KB |
स्थापना संख्या | 51,027 |
वर्तमान संस्करण | 4.0 |
अंतिम अपडेट | 2023-10-31 |
प्रकाशन तिथि | 2019-07-27 |
रेटिंग | 4.63/5 कुल 192 रेटिंग्स |
डेवलपर | Natalie Chouinard |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/sudonatalie/layout-trello |
सहायता पृष्ठ URL | https://github.com/sudonatalie/layout-trello/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "[DEPRECATED] List Layouts for Trello", "description": "Allow Trello lists to be displayed vertically or in a grid.", "version": "4.0", "author": "Natalie Chouinard", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/b\/*" ], "css": [ "css\/layout.css" ], "js": [ "js\/init.js" ] } ], "permissions": [ "*:\/\/trello.com\/b\/*", "declarativeContent", "storage", "webNavigation" ], "page_action": { "default_title": "List Layouts for Trello" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" } } } } |