AsanaTabs
A lightweight, clean way to view tasks from across all your workspaces in your new tab page.
AsanaTabs là gì?
AsanaTabs là một tiện ích mở rộng Chrome được phát triển bởi Jason Wang, và tính năng chính của nó là "A lightweight, clean way to view tasks from across all your workspaces in your new tab page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AsanaTabs
Tải xuống các tệp mở rộng AsanaTabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Asana Tab is an extension that allows users to overhaul their new tab page in order to view Asana projects from multiple workspaces in an easy-to-access and completed user interface. For more information, please visit the Github page: https://github.com/kamesstory/asanatabs-react. If you have any questions, please feel free to submit them via Github Issues: https://github.com/kamesstory/asanatabs-react/issues/new v3.4.0 — Adding support for Cohere, to help debug issues and support users. v3.3.0 — Adding support for querying through background script to enable tasks to update and actions to execute even when the tab is closed. v3.2.0 — Corrections to timezones and allowing upcoming tasks to show up again. v3.1.0 — Fixed several task submission issues and made the workspace selection a drop-down. v3.0.0 — Touched up all parts of the app, including the create task button and animations on the task list v2.2.0 — Added nav to Asana website on click of task v2.1.2 — Added URL to be opened upon uninstall v2.1.1 — Minified the background image so there is smoother loading v2.1.0 — Added defaults for the workspaces, start and due dates! v2.0.0 — Revolutionized everything! Now back and better. Cleaner and more modern design, and new framework for more and better changes in the future. v1.5.2 — Added changes to accommodate for Asana API 'id' to 'gid' switch. v1.5.1 — Changed "Mark Task Done" button scaling, and small display main page layout v1.5.0 — Added feedback functionality and settings for local storage of workspaces that users don't want to see. v1.4.1 — Modified tasks to not display extraneous "Date not defined" data. v1.4 — Modified the header to get rid of the white split v1.3 — Added full complete task and new task functionalities, and changed background (yet again) v1.2.1 — Changed background photo for loading time optimization and laid foundation for discrete workspaces and workspace orderings. v1.2 — Added am/pm displays, changed time to 12:00 settings instead of 24:00. Also added date and weekday in American format. v1.1 — Added default display screen with ability to open a project view below the default screen v1.0 — Initial Release, with minimum viewing functionality
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AsanaTabs |
ID | ldfaccjdcphlaodakclpiomadaakoobd |
URL Chính Thức | https://chromewebstore.google.com/detail/asanatabs/ldfaccjdcphlaodakclpiomadaakoobd |
Mô tả | A lightweight, clean way to view tasks from across all your workspaces in your new tab page. |
Kích Thước Tệp | 620 KB |
Số Lần Cài Đặt | 583 |
Phiên Bản Hiện Tại | 3.4.0 |
Cập Nhật Lần Cuối | 2023-02-06 |
Ngày Phát Hành | 2020-05-09 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Jason Wang |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kamesstory/asanatabs-react |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AsanaTabs", "version": "3.4.0", "content_security_policy": "script-src 'self' https:\/\/*.cohere.so; object-src 'self'", "description": "A lightweight, clean way to view tasks from across all your workspaces in your new tab page.", "background": { "persistent": true, "scripts": [ "background.bundle.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "chrome_url_overrides": { "newtab": "index.html" }, "permissions": [ "background", "storage", "cookies", "*:\/\/*.asana.com\/*" ], "web_accessible_resources": [ "icon16.png", "icon48.png", "icon128.png" ] } |