Gmail To Things

A quick shortcut to add tasks to Things inside Gmail.

Gmail To Things란 무엇입니까?

Gmail To Things은(는) https://rafaelgandi.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A quick shortcut to add tasks to Things inside Gmail."입니다.

확장 프로그램 스크린샷

screenshot

Gmail To Things 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A lightweight chrome extension designed to effortlessly integrate your Gmail and Things workflow. With a quick click or keyboard shortcut add tasks directly to your Things inbox right inside your Gmail web app. 

This is particularly beneficial for non-Mac users, such as those working on office computers, as well as individuals unable to install the Things app on their computer. Don't let platform limitations hinder your efficiency—empower yourself with this simple, user-friendly solution.                    

확장 프로그램 기본 정보

이름 Gmail To Things Gmail To Things
ID boiinfgjokondlalgdcgfkhimdpolkfg
공식 URL https://chromewebstore.google.com/detail/gmail-to-things/boiinfgjokondlalgdcgfkhimdpolkfg
설명 A quick shortcut to add tasks to Things inside Gmail.
파일 크기 240 KB
설치 횟수 44
현재 버전 0.0.0.5
최근 업데이트 2023-11-26
출시 날짜 2023-11-22
개발자 https://rafaelgandi.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://rafaelgandi.notion.site/Gmail-to-Things-2f99b29adcbc4065b4b729629d2f35a4
도움말 페이지 URL https://rafaelgandi.notion.site/Gmail-to-Things-2f99b29adcbc4065b4b729629d2f35a4
개인정보 보호 정책 페이지 URL https://rafaelgandi.notion.site/Gmail-to-Things-Privacy-Policy-e02f1813812940989d10fcab5bd35ac9?pvs=4
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail To Things",
    "description": "A quick shortcut to add tasks to Things inside Gmail.",
    "version": "0.0.0.5",
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "48": "assets\/icons\/48x48.png",
        "128": "assets\/icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "lib\/zepto.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "lib\/helpers.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "open-g2t-dialog": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "Alt+Shift+T"
            },
            "description": "Open Gmail 2 Things dialog."
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+O",
                "mac": "Alt+Shift+O"
            },
            "description": "Open stash window."
        }
    }
}