Trello Auto Scroll

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

Was ist Trello Auto Scroll?

Trello Auto Scroll ist eine Chrome-Erweiterung, die von dashboard-team entwickelt wurde, und ihr Hauptmerkmal ist "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".

Erweiterungsscreenshots

screenshot
screenshot

Trello Auto Scroll-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello Auto Scroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Trello Auto Scroll Trello Auto Scroll
ID iheeklbhnidcdjfkonakkkbbjophomkk
Offizielle URL https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk
Beschreibung This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Dateigröße 78.89 KB
Installationsanzahl 126
Aktuelle Version 1.7
Letztes Update 2017-11-06
Veröffentlichungsdatum 2017-11-06
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler dashboard-team
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}