Reference.Email

Reference.Email gives your emails a URL that all recipients can use to find that specific message.

Reference.Email là gì?

Reference.Email là một tiện ích mở rộng Chrome được phát triển bởi https://reference.email, và tính năng chính của nó là "Reference.Email gives your emails a URL that all recipients can use to find that specific message.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reference.Email

Tải xuống các tệp mở rộng Reference.Email dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension adds a button in your Gmail messages' context menu to generate a search URL unique to this message and copy it to your clipboard. You can paste this link anywhere and give other recipients a breadcrumb to reference that specific email by.

How? Using the "rfc822msgid" that each email has in its metadata. The Reference.Email link auto-searches for this value and surfaces the one message that matches. 


(Note: This is Gmail specific, right now.)

View our "privacy policy" here:
https://docs.google.com/document/d/1aRQ6im0IfS2tyww-809NPgLTTc8BItPSWfghIZL0ehQ/edit

(Hint, we don't use/store/transmit any private info.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reference.Email Reference.Email
ID ohhblkgfjjbjcaddddgooclkoeiiklgk
URL Chính Thức https://chromewebstore.google.com/detail/referenceemail/ohhblkgfjjbjcaddddgooclkoeiiklgk
Mô tả Reference.Email gives your emails a URL that all recipients can use to find that specific message.
Kích Thước Tệp 855 KB
Số Lần Cài Đặt 69
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2024-03-01
Ngày Phát Hành 2021-10-02
Nhà Phát Triển https://reference.email
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng http://reference.email
URL Trang Trợ Giúp https://docs.google.com/document/d/1aRQ6im0IfS2tyww-809NPgLTTc8BItPSWfghIZL0ehQ/edit
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1eGRaxZdOdCBGWipFIK39gF0jZq6FD9_w56U3xV9WppE/view
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reference.Email",
    "description": "Reference.Email gives your emails a URL that all recipients can use to find that specific message.",
    "version": "2.0.1",
    "manifest_version": 3,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn6o2IEhgTR2S0Up9V\/rwiVj9qevy996ZdloU5gZJ6QgFtf7n6RAMf2WDuCK+rAVKqzzDHNDmbOMlv\/kBcpbMIGK7JUYRqOukpLUkVLZSunbvNrfVjL55D+m1fpYlNicxnRJ\/58HRNqtIzzaaIJhdfhbW6A370aYvvhQ6c3dtJMTKo+PF\/qTKDb0kMZII7+IKJGbnwVNDl7NTJ1LhwZFpXXc5pME3Wk6mEfpUttKCb4vW+++14jjR174MMSm3xYvRJsB3pbVCKIvWGUTKjnPXGwmSNV6nCink2Z3feCuhFN5M770Yv7Y5OUTzt\/8iGzNHGyjjrRnUpi5kwJBe0Kt7tQIDAQAB",
    "icons": {
        "512": "icon512.png",
        "16": "icon16.png",
        "32": "icon32.png"
    },
    "oauth2": {
        "client_id": "221145816595-0ovlteop3t876p70jfp97vshgpm1j0vc.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_title": "Reference.Email",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/reference.email\/*",
            "http:\/\/localhost:8080\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "host_permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/mail.google.com\/"
    ],
    "permissions": [
        "storage",
        "scripting",
        "identity"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page.js",
                "copy.png"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ]
        }
    ]
}