Gmail message ID finder

Adds a 'Copy message ID' button to Gmail messages which generates a search term that you can later use to get back to your message.

什麼是Gmail message ID finder?

Gmail message ID finder是由https://gmail-message-id-finder.co開發的Chrome擴展程式,該擴展的主要功能是“Adds a 'Copy message ID' button to Gmail messages which generates a search term that you can later use to get back to your message.”。

擴展截圖

screenshot

下載Gmail message ID finder擴展crx文件

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

擴展使用說明

                        This extension allows you to easily generate unique search terms for your Gmail messages, so you can find them later.

After installation, you will see a 'Copy message ID' item in the menu for each email.
When you click the item, a unique search term (based on the email identifier of the message) will be copied to your clipboard.
Save that ID somewhere in your notes or wherever the message is relevant (for instance with project documentation, a group chat with other people that got the message or a project invoice) and simply paste it back into the Gmail search bar to quickly find that one message.                    

擴展基本資訊

名稱 Gmail message ID finder Gmail message ID finder
ID comcoiiifldaaejpbgbincdkoohihbae
官方網址 https://chromewebstore.google.com/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae
簡介 Adds a 'Copy message ID' button to Gmail messages which generates a search term that you can later use to get back to your message.
檔案大小 34.98 KB
安裝次數 2,488
目前版本 1.0.2
更新時間 2021-03-30
上架時間 2017-02-01
評分 4.09/5 共 11 次評分
開發者 https://gmail-message-id-finder.co
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail message ID finder",
    "short_name": "Gmail ID finder",
    "description": "Adds a 'Copy message ID' button to Gmail messages which generates a search term that you can later use to get back to your message.",
    "version": "1.0.2",
    "author": "Tim van Dalen ",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "page.js"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}