Trello Feed
Have a full visibility of what is happening in Trello.
Was ist Trello Feed?
Trello Feed ist eine Chrome-Erweiterung, die von ynazarov entwickelt wurde, und ihr Hauptmerkmal ist "Have a full visibility of what is happening in Trello.".
Erweiterungsscreenshots
Trello Feed-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello Feed-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | obincefhnenglgklhbehgeeeccjpgccn |
| Offizielle URL | https://chrome.google.com/webstore/detail/obincefhnenglgklhbehgeeeccjpgccn |
| Beschreibung | Have a full visibility of what is happening in Trello. |
| Dateigröße | 709 KB |
| Installationsanzahl | 75 |
| Aktuelle Version | 1.1.1 |
| Letztes Update | 2017-11-01 |
| Veröffentlichungsdatum | 2017-11-01 |
| Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
| Entwickler | ynazarov |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |