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とは何ですか?
Trello Auto Scrollはdashboard-teamによって開発されたChromeの拡張機能で、その主な機能は「This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.」です。
拡張機能のスクリーンショット
Trello Auto Scroll拡張機能のCRXファイルをダウンロード
Trello Auto Scroll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | iheeklbhnidcdjfkonakkkbbjophomkk |
| 公式URL | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
| 説明 | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
| ファイルサイズ | 78.89 KB |
| インストール数 | 126 |
| 現在のバージョン | 1.7 |
| 最終更新日 | 2017-11-06 |
| 公開日 | 2017-11-06 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | dashboard-team |
| 支払い方法 | free |
| 対応言語 | 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:\/\/*\/*"
]
} | |