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 je Gmail message ID finder?

Gmail message ID finder je rozšíření Chrome vyvinuté https://gmail-message-id-finder.co, a jeho hlavní funkcí je „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.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Gmail message ID finder

Stáhněte si soubory rozšíření Gmail message ID finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Gmail message ID finder Gmail message ID finder
ID comcoiiifldaaejpbgbincdkoohihbae
Oficiální URL https://chromewebstore.google.com/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae
Popis 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.
Velikost souboru 34.98 KB
Počet instalací 2,488
Aktuální Verze 1.0.2
Poslední Aktualizace 2021-03-30
Datum Vydání 2017-02-01
Hodnocení 4.09/5 Celkem 11 Hodnocení
Vývojář https://gmail-message-id-finder.co
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}