Asana

Quickly add and search tasks in Asana from any web page.

Asanaคืออะไร?

Asana เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://asana.com และคุณลักษณะหลักของมันคือ "Quickly add and search tasks in Asana from any web page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Asana

ดาวน์โหลดไฟล์ส่วนขยาย Asana ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This official Asana Chrome Extension enables you to quickly add and search for Asana tasks from any webpage.  

From tasks and projects to conversations and notifications, Asana enables teams to move work from start to finish. It’s simple to get started, but powerful enough to run your entire business. 

QUICKLY ADD TASKS
Add tasks to Asana from any webpage.
Put tasks directly in any project. 
Quickly add a task description and assign to a teammate.
Select the appropriate assignee from a dropdown menu. 
Input custom fields to your new tasks.
Add the current URL as a task, so you can read articles later or share them with teammates.

TRACK ALL OF YOUR WORK
Create projects and assign tasks so everyone knows who's doing what, by when.
Mange your task list and your teammates will see your progress.
Track progress against your project goals at-a-glance.
Search across all of your work to find the information you need quickly.

COMMUNICATE IN ASANA
Use conversations to make announcements to your team, ask a question in a project, or comment on a single task.
Turn communication into action by create tasks directly from conversations.
Get notifications in Inbox about only the projects, tasks, and conversations you’re following.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Asana Asana
ID khnpeclbnipcdacdkhejifenadikeghk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/asana/khnpeclbnipcdacdkhejifenadikeghk
คำอธิบาย Quickly add and search tasks in Asana from any web page.
ขนาดไฟล์ 27.82 MB
จำนวนการติดตั้ง 140,454
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2023-09-09
วันที่เผยแพร่ 2020-06-24
คะแนน 3.32/5 รวมทั้งหมด 287 คะแนน
ผู้พัฒนา https://asana.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://asana.com
URL หน้าช่วยเหลือ https://asana.com/guide
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Asana",
    "version": "2.2.1",
    "description": "Quickly add and search tasks in Asana from any web page.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "minimum_chrome_version": "88",
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Asana",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background_prod.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asana.com\/*"
            ],
            "js": [
                "sidebar.js"
            ],
            "css": [
                "css.css"
            ],
            "exclude_matches": [
                "https:\/\/*.asana.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.css",
                "*.html",
                "*.js"
            ],
            "extension_ids": [
                "khlcgjmkdafghpggcpdkhgfaoaipbijj"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "incognito": "split",
    "offline_enabled": false,
    "permissions": [
        "cookies",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*.asana.com\/*"
    ]
}