trello-board

enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…

什么是trello-board?

trello-board是由rotagi37开发的Chrome扩展程序,该扩展的主要功能是“enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…”。

下载trello-board扩展crx文件

下载trello-board扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        enables to peek trello board from action icon popup 

just setup you current board and list name in the option screen and get easy access to the list from the extension icon                    

扩展基本信息

名称 trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
官方URL https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
简介 enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
文件大小 65.42 KB
安装次数 42
当前版本 1.0.1.6
更新时间 2017-09-27
上架时间 2017-09-27
评分 5.00/5 共1次评分
开发者 rotagi37
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "trello-board",
    "manifest_version": 2,
    "version": "1.0.1.6",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "history",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "https:\/\/trello.com\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_title": "Trello Board",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "jquery-3.2.1.min.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}