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…

Co to jest trello-board?

trello-board to rozszerzenie Chrome opracowane przez rotagi37, a jego główną funkcją jest „enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…”.

Pobierz plik CRX rozszerzenia trello-board

Pobierz pliki rozszerzeń trello-board w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
Oficjalny URL https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Opis enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Rozmiar pliku 65.42 KB
Liczba instalacji 42
Aktualna Wersja 1.0.1.6
Ostatnia Aktualizacja 2017-09-27
Data Publikacji 2017-09-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper rotagi37
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}