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
公式URL 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
Eメール [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
}