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…

What is trello-board?

trello-board is a Chrome extension developed by rotagi37, and its main feature is "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Download trello-board Extension CRX File

Download trello-board extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
Official URL https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Description enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
File Size 65.42 KB
Installation Count 42
Current Version 1.0.1.6
Last Updated 2017-09-27
Publish Date 2017-09-27
Rating 5.00/5 Total 1 Ratings
Developer rotagi37
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}