Trello Feed
Have a full visibility of what is happening in Trello.
Cos'è Trello Feed?
Trello Feed è un'estensione di Chrome sviluppata da ynazarov, e la sua funzione principale è "Have a full visibility of what is happening in Trello.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Trello Feed
Scarica i file di estensione Trello Feed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | obincefhnenglgklhbehgeeeccjpgccn |
URL Ufficiale | https://chrome.google.com/webstore/detail/obincefhnenglgklhbehgeeeccjpgccn |
Descrizione | Have a full visibility of what is happening in Trello. |
Dimensione del File | 709 KB |
Conteggio Installazioni | 75 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2017-11-01 |
Data di Pubblicazione | 2017-11-01 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | ynazarov |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |