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

trello-board là một tiện ích mở rộng Chrome được phát triển bởi rotagi37, và tính năng chính của nó là "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Tải xuống tệp CRX của tiện ích mở rộng trello-board

Tải xuống các tệp mở rộng trello-board 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

                        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                    

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

Tên trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
URL Chính Thức https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Mô tả enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Kích Thước Tệp 65.42 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.0.1.6
Cập Nhật Lần Cuối 2017-09-27
Ngày Phát Hành 2017-09-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rotagi37
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}