Trello Horizontal Scroll

Enables Horizontal Scroll in Trello

Τι είναι το Trello Horizontal Scroll;

Το Trello Horizontal Scroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον exexzian, και η κύρια λειτουργία του είναι "Enables Horizontal Scroll in Trello".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Trello Horizontal Scroll

Λήψη αρχείων επέκτασης Trello Horizontal Scroll σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Trello by default doesn't gives the feature to scroll board horizontally whereas as the number of lists grows its not easy to view all lists by clicking and moving the board or moving the horizontal bar manually (surely this flow doesn't seems smooth on desktop and laptops right).

So, this extension adds the feature and enables the horizontal scroll on Trello boards.

Change Log:

v3.1.0
- Updated Options UI as per chrome extension's options UI version 2
  with this update - now options window to set scroll speed opens up in extension page.

v3.0.0
- Provided option to customize scroll speed ( defaults to 30 )

v2.0.0:
- Fixed bugs: now horizontal scroll deactivates automatically once it detects the presence of vertical scroll bar within lists or cards.

Note: If horizontal scroll stops working while switching boards - please refresh page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Trello Horizontal Scroll Trello Horizontal Scroll
ID helbelbejomncfaikdnecdmpjfcnpfoi
Επίσημο URL https://chromewebstore.google.com/detail/trello-horizontal-scroll/helbelbejomncfaikdnecdmpjfcnpfoi
Περιγραφή Enables Horizontal Scroll in Trello
Μέγεθος Αρχείου 40.38 KB
Αριθμός Εγκαταστάσεων 457
Τρέχουσα Έκδοση 3.1.1
Τελευταία Ενημέρωση 2015-07-05
Ημερομηνία Δημοσίευσης 2015-07-05
Αξιολόγηση 3.86/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής exexzian
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Horizontal Scroll",
    "description": "Enables Horizontal Scroll in Trello",
    "version": "3.1.1",
    "permissions": [
        "https:\/\/trello.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "jquery.mousewheel.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "TrelloHorizontalScroll128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.mousewheel.js",
                "background.js"
            ]
        }
    ]
}