mail - Messenger App Intelligent Launcher

A Chrome Omnibox extension for quickly launching Facebook Messenger conversations!

mail - Messenger App Intelligent Launcherคืออะไร?

mail - Messenger App Intelligent Launcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shiny-eel และคุณลักษณะหลักของมันคือ "A Chrome Omnibox extension for quickly launching Facebook Messenger conversations!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย mail - Messenger App Intelligent Launcher

ดาวน์โหลดไฟล์ส่วนขยาย mail - Messenger App Intelligent Launcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ### Overview
Mail is intended to be an efficient, lightweight add-on for those who use the Facebook Messenger browser site often. It speeds up workflow by removing the need to interact with the Messenger page's UI to open specific chats, instead using the power of the Omnibox (Chrome's address bar).

Just type an `m` in the address bar, hit `space`, and go for it! Keep in mind - Mail needs you to use Messenger once before it can suggest things to you.

#### Features
- ONE TAB. If you have a Messenger tab open, Mail will use that. If you don't, it'll open one. (*And pin it too!*)
- Smart-ish Suggestions. Mail will match based on both chat URL (i.e. their FB username), as well as chat title. This works for both normal chats and group chats.
- No Login Needed. As long as messenger.com works for you normally, Mail will too.

### Permissions
On install, Mail will ask for permission to:
- Read and change data for messenger.com
- Read your browsing history

While the first is pretty self explanatory, the second may sound unnecessary. The reason it comes up is that mail accesses the tabs api to control how to open the messenger tab. All Chrome extensions that use this api elicit this warning.

Go to https://github.com/shiny-eel/messenger-launch for more details!
___
Thanks to [Hare Krishna](https://thenounproject.com/aathis/) and [The Noun Project](https://thenounproject.com) for the icon.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ mail - Messenger App Intelligent Launcher mail - Messenger App Intelligent Launcher
ID iajnhopgafljpgpnhcdjkgmpkkhkphgk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mail-messenger-app-intell/iajnhopgafljpgpnhcdjkgmpkkhkphgk
คำอธิบาย A Chrome Omnibox extension for quickly launching Facebook Messenger conversations!
ขนาดไฟล์ 364 KB
จำนวนการติดตั้ง 68
เวอร์ชันปัจจุบัน 0.145
อัปเดตครั้งล่าสุด 2019-02-24
วันที่เผยแพร่ 2019-02-24
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา shiny-eel
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shiny-eel/messenger-launch
URL หน้าช่วยเหลือ https://github.com/shiny-eel/messenger-launch
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "mail - Messenger App Intelligent Launcher",
    "short_name": "mail",
    "version": "0.145",
    "description": "A Chrome Omnibox extension for quickly launching Facebook Messenger conversations!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/www.messenger.com\/",
        "storage",
        "background"
    ],
    "omnibox": {
        "keyword": "m"
    },
    "icons": {
        "16": "resources\/mailbox_colour.png",
        "32": "resources\/mailbox_colour.png",
        "48": "resources\/mailbox_colour.png",
        "128": "resources\/mailbox_colour.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/mailbox_colour.png",
            "24": "resources\/mailbox_colour.png",
            "32": "resources\/mailbox_colour.png"
        },
        "default_title": "Open the popup",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.messenger.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}