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.

Co to jest Gmail message ID finder?

Gmail message ID finder to rozszerzenie Chrome opracowane przez https://gmail-message-id-finder.co, a jego główną funkcją jest „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.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail message ID finder

Pobierz pliki rozszerzeń Gmail message ID finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail message ID finder Gmail message ID finder
ID comcoiiifldaaejpbgbincdkoohihbae
Oficjalny URL https://chromewebstore.google.com/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae
Opis 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.
Rozmiar pliku 34.98 KB
Liczba instalacji 2,488
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2021-03-30
Data Publikacji 2017-02-01
Ocena 4.09/5 Łącznie 11 Oceny
Deweloper https://gmail-message-id-finder.co
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}