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:\/\/*\/*"
]
} | |