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…

O que é trello-board?

trello-board é uma extensão do Chrome desenvolvida por rotagi37, e sua principal característica é "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Baixar o arquivo CRX da Extensão trello-board

Baixe arquivos de extensão trello-board no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
URL Oficial https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Descrição enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Tamanho do Arquivo 65.42 KB
Contagem de Instalações 42
Versão Atual 1.0.1.6
Última Atualização 2017-09-27
Data de Publicação 2017-09-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor rotagi37
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}