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.

Qu'est-ce que Gmail message ID finder ?

Gmail message ID finder est une extension Chrome développée par https://gmail-message-id-finder.co, et sa fonction principale est "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.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gmail message ID finder

Téléchargez les fichiers d'extension Gmail message ID finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Gmail message ID finder Gmail message ID finder
ID comcoiiifldaaejpbgbincdkoohihbae
URL Officiel https://chromewebstore.google.com/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae
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.
Taille du Fichier 34.98 KB
Nombre d'Installations 2,488
Version Actuelle 1.0.2
Dernière Mise à Jour 2021-03-30
Date de Publication 2017-02-01
Évaluation 4.09/5 Total 11 Évaluations
Développeur https://gmail-message-id-finder.co
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}