Trello Auto Scroll

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

Wat is Trello Auto Scroll?

Trello Auto Scroll is een Chrome-extensie ontwikkeld door dashboard-team, en de belangrijkste functie is "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Trello Auto Scroll

Download Trello Auto Scroll-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Trello Auto Scroll Trello Auto Scroll
ID iheeklbhnidcdjfkonakkkbbjophomkk
Officiële URL https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk
Beschrijving This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Bestandsgrootte 78.89 KB
Aantal Installaties 126
Huidige Versie 1.7
Laatst Bijgewerkt 2017-11-06
Publicatiedatum 2017-11-06
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar dashboard-team
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
    ]
}