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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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
}