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文件

下載Gmail To Things擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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."
        }
    }
}