Trello Feed
Have a full visibility of what is happening in Trello.
What is Trello Feed?
Trello Feed is a Chrome extension developed by ynazarov, and its main feature is "Have a full visibility of what is happening in Trello.".
Extension Screenshots
Download Trello Feed Extension CRX File
Download Trello Feed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | obincefhnenglgklhbehgeeeccjpgccn |
Official URL | https://chrome.google.com/webstore/detail/obincefhnenglgklhbehgeeeccjpgccn |
Description | Have a full visibility of what is happening in Trello. |
File Size | 709 KB |
Installation Count | 75 |
Current Version | 1.1.1 |
Last Updated | 2017-11-01 |
Publish Date | 2017-11-01 |
Rating | 4.00/5 Total 3 Ratings |
Developer | ynazarov |
Payment Type | free |
Supported Languages | 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" ] } |