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…

¿Qué es trello-board?

trello-board es una extensión de Chrome desarrollada por rotagi37, y su función principal es "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Descargar Archivo CRX de la Extensión trello-board

Descarga archivos de extensión trello-board en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
URL Oficial https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Descripción enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Tamaño del Archivo 65.42 KB
Cantidad de Instalaciones 42
Versión Actual 1.0.1.6
Última Actualización 2017-09-27
Fecha de Publicación 2017-09-27
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador rotagi37
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}