Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Trello Auto Scroll क्या है?
Trello Auto Scroll dashboard-team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello Auto Scroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allow your Trello scroll automatically until the last card and back to the first card as a loop. It's extremely useful for using Trello as a slide show board. Developed by: Willian Keller Diego Ocko Martins
एक्सटेंशन की मूल जानकारी
नाम | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
विवरण | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
फ़ाइल का आकार | 78.89 KB |
स्थापना संख्या | 126 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2017-11-06 |
प्रकाशन तिथि | 2017-11-06 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | dashboard-team |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.7", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/utils\/storage.min.js", "src\/utils\/runtime.min.js", "src\/vendor\/jquery.min.js", "src\/main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "src\/options.html", "chrome_style": false }, "icons": { "128": "src\/icons\/icon.png" }, "browser_action": { "default_icon": "src\/icons\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Auto Scroll" }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |