Yanado - Task Management inside Gmail

Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds.

Yanado - Task Management inside Gmail란 무엇입니까?

Yanado - Task Management inside Gmail은(는) https://yanado.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Yanado - Task Management inside Gmail 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Yanado lets you create and manage your tasks and projects without leaving your Gmail.

CREATE TASKS FROM EMAILS
- Create tasks from emails with a single click, add them to projects and set reminders.
- Easily find email related to the tasks just by clicking on the task in the list.

TASK MANAGEMENT
- Create tasks and TO-DO lists in seconds within your Gmail.
- Use tags to improve search and organization of your tasks.
- Create custom statuses to support your own processes.

SHARE TASKS
- Delegate tasks and discuss details with your team members.

PROJECT MANAGEMENT
- Manage project progress and track who is doing what in your team.

DUE DATES & REMINDERS
- Never miss a deadline again by setting due date and reminders on your tasks (synced with Google Calendar).

REAL TIME NOTIFICATIONS
- Receive project updates right inside your Gmail and reduce the number of emails you are getting.

SUBTASKS
- Subtasks are great way to breakdown complex task into smaller steps.

VISUALISE YOUR WORK
-Choose between a simple list or a kanban-view with cards to easily visualize your work.

GREAT FOR
- If you spend majority of your time within your Gmail and you have lots of tasks to manage, Yanado is perfect tool for you to help you get organized better without leaving your Gmail.

For details about pricing, check the pricing page on our website.                    

확장 프로그램 기본 정보

이름 Yanado - Task Management inside Gmail Yanado - Task Management inside Gmail
ID lcmhimhhdbhdjlbnfcknbnnffcikniec
공식 URL https://chromewebstore.google.com/detail/yanado-task-management-in/lcmhimhhdbhdjlbnfcknbnnffcikniec
설명 Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds.
파일 크기 281 KB
설치 횟수 5,343
현재 버전 2.0.0.1
최근 업데이트 2021-01-04
출시 날짜 2020-06-04
평점 4.60/5 총 87 개의 평점
개발자 https://yanado.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.yanado.com
도움말 페이지 URL http://yanado.uservoice.com
개인정보 보호 정책 페이지 URL https://yanado.com/blog/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yanado - Task Management inside Gmail",
    "short_name": "Yanado",
    "description": "Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds.",
    "version": "2.0.0.1",
    "icons": {
        "16": "\/icons\/icon_16.png",
        "48": "\/icons\/icon_48.png",
        "128": "\/icons\/icon_128.png"
    },
    "web_accessible_resources": [
        "script\/static\/main.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "script\/yanado.inject.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.yanado.com\/*"
        ]
    },
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/*.yanado.com; object-src 'self'",
    "permissions": [
        "notifications",
        "tabs",
        "*:\/\/mail.google.com\/*",
        "*:\/\/apis.google.com\/*",
        "*:\/\/*.pusher.com\/*",
        "*:\/\/*.yanado.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_16.png"
        },
        "default_title": "Yanado",
        "default_popup": "popup\/popup.html"
    }
}