Trello Encryption
Encrypt Data on Trello
What is Trello Encryption?
Trello Encryption is a Chrome extension developed by https://www.eboodevelopment.com, and its main feature is "Encrypt Data on Trello".
Extension Screenshots
Download Trello Encryption Extension CRX File
Download Trello Encryption 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
Allows you to encrypt content on a single trello board.
Extension Basic Information
Name | Trello Encryption |
ID | oojhoeaaenjmmjbelmdmdaphajgigaab |
Official URL | https://chromewebstore.google.com/detail/trello-encryption/oojhoeaaenjmmjbelmdmdaphajgigaab |
Description | Encrypt Data on Trello |
File Size | 336 KB |
Installation Count | 20 |
Current Version | 0.0.1 |
Last Updated | 2015-04-03 |
Publish Date | 2015-04-03 |
Developer | https://www.eboodevelopment.com |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Encryption", "description": "Encrypt Data on Trello", "icons": { "128": "icon-128.png", "16": "icon.png", "48": "icon-48.png" }, "version": "0.0.1", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "js\/jquery-1.11.1.min.js", "js\/background.js", "js\/aes.js" ] } ], "permissions": [ "storage" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" } } |