Asana enhancement
This extension add some features to Asana.
What is Asana enhancement?
Asana enhancement is a Chrome extension developed by Unknown, and its main feature is "This extension add some features to Asana.".
Extension Screenshots
Download Asana enhancement Extension CRX File
Download Asana enhancement 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
This extension modify Asana boards. It will display tags/projects on cards and let you set a custom background and adjust opacity.
Extension Basic Information
Name | Asana enhancement |
ID | bcihchocdpnjacbokijceacoofnnehic |
Official URL | https://chromewebstore.google.com/detail/asana-enhancement/bcihchocdpnjacbokijceacoofnnehic |
Description | This extension add some features to Asana. |
File Size | 8.61 KB |
Installation Count | 277 |
Current Version | 0.0.0.2 |
Last Updated | 2020-03-22 |
Publish Date | 2020-03-20 |
Rating | 3.86/5 Total 7 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana enhancement", "version": "0.0.0.2", "description": "This extension add some features to Asana.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/asana_fix16.png", "32": "images\/asana_fix32.png", "48": "images\/asana_fix48.png", "128": "images\/asana_fix128.png" } }, "icons": { "16": "images\/asana_fix16.png", "32": "images\/asana_fix32.png", "48": "images\/asana_fix48.png", "128": "images\/asana_fix128.png" }, "web_accessible_resources": [ "script.js" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/app.asana.com\/*" ] } ] } |