Trello Feed

Have a full visibility of what is happening in Trello.

Co to jest Trello Feed?

Trello Feed to rozszerzenie Chrome opracowane przez ynazarov, a jego główną funkcją jest „Have a full visibility of what is happening in Trello.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trello Feed

Pobierz pliki rozszerzeń Trello Feed 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

                        Trello Feed will group updates from all your boards and show them in one place so that you wouldn't miss a thing. 
It will notify you if new updates available, so you can quickly respond to a comment or a task.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Feed Trello Feed
ID obincefhnenglgklhbehgeeeccjpgccn
Oficjalny URL https://chrome.google.com/webstore/detail/obincefhnenglgklhbehgeeeccjpgccn
Opis Have a full visibility of what is happening in Trello.
Rozmiar pliku 709 KB
Liczba instalacji 75
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2017-11-01
Data Publikacji 2017-11-01
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper ynazarov
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Feed",
    "version": "1.1.1",
    "description": "Have a full visibility of what is happening in Trello.",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "css": [
                "css\/modifiedBoards.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "html\/app.html",
        "icons\/boards.white.svg",
        "icons\/feed.white.svg"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": [],
    "permissions": [
        "https:\/\/trello.com\/*",
        "https:\/\/www.google-analytics.com\/",
        "storage",
        "tabs",
        "alarms"
    ]
}