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 là gì?

Trello Auto Scroll là một tiện ích mở rộng Chrome được phát triển bởi dashboard-team, và tính năng chính của nó là "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Auto Scroll

Tải xuống các tệp mở rộng Trello Auto Scroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Auto Scroll Trello Auto Scroll
ID iheeklbhnidcdjfkonakkkbbjophomkk
URL Chính Thức https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk
Mô tả This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Kích Thước Tệp 78.89 KB
Số Lần Cài Đặt 126
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2017-11-06
Ngày Phát Hành 2017-11-06
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dashboard-team
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}