Asana Productivity Hacks
Several Asana hacks that make your life more productive!
Asana Productivity Hacks क्या है?
Asana Productivity Hacks Dennis Paagman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Several Asana hacks that make your life more productive!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Asana Productivity Hacks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This small extension is here to increase your Asana productivity, it: - Introduces "Silent mode", which removes the unread inbox notifications - Introduces "meeting mode", which reduces visual clutter when using Asana in meetings - Introduces an "Inbox" switch, which completely hides your inbox so you can focus on work - Introduces a "Home" switch, which hides the new Home feature in the menu bar. Next to that, the extension: Makes private tasks more prominent with a red background, making sure you never accidentaly create private tasks anymore. Makes project and tags in the task list more clear (wider) on large screens.
एक्सटेंशन की मूल जानकारी
नाम | Asana Productivity Hacks |
ID | aednamkkbmbonmnmohjfhgmekggbnjlh |
आधिकारिक URL | https://chromewebstore.google.com/detail/asana-productivity-hacks/aednamkkbmbonmnmohjfhgmekggbnjlh |
विवरण | Several Asana hacks that make your life more productive! |
फ़ाइल का आकार | 8.97 KB |
स्थापना संख्या | 117 |
वर्तमान संस्करण | 0.17 |
अंतिम अपडेट | 2020-06-06 |
प्रकाशन तिथि | 2020-06-05 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Dennis Paagman |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Productivity Hacks", "short_name": "Asana Productivity Hacks", "description": "Several Asana hacks that make your life more productive!", "version": "0.17", "author": "Dennis Paagman", "permissions": [ "storage", "tabs", "https:\/\/app.asana.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*" ], "css": [ "asana-hacks.css" ], "js": [ "asana-hacks.js" ], "run_at": "document_idle" } ], "browser_action": { "name": "Asana hack settings", "default_icon": "icon.png", "default_popup": "settings.html" } } |