Trello Auto Scroll

This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.

Qu'est-ce que Trello Auto Scroll ?

Trello Auto Scroll est une extension Chrome développée par dashboard-team, et sa fonction principale est "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Trello Auto Scroll

Téléchargez les fichiers d'extension Trello Auto Scroll au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Trello Auto Scroll Trello Auto Scroll
ID iheeklbhnidcdjfkonakkkbbjophomkk
URL Officiel https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk
Description This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Taille du Fichier 78.89 KB
Nombre d'Installations 126
Version Actuelle 1.7
Dernière Mise à Jour 2017-11-06
Date de Publication 2017-11-06
Évaluation 1.00/5 Total 1 Évaluations
Développeur dashboard-team
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*"
    ]
}