SendMe Telegram

Allows you to send links, images, maps, quotes from browser to your Telegram via bot.

SendMe Telegramคืออะไร?

SendMe Telegram เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oleksandr Us และคุณลักษณะหลักของมันคือ "Allows you to send links, images, maps, quotes from browser to your Telegram via bot."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SendMe Telegram

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

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

                        Extension allow to send any links, images and text to Telegram directly from your web browser!

What's new in 0.3.0:
- no more additional text when sending a link (just url).
- dark/light theme icon. Icon is changing accordingly to your browser/system theme.

***LIFEHACK***
Use context menu:
-send image
-send selected text
-send link URL
-send active page by clicking icon                    

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

ชื่อ SendMe Telegram SendMe Telegram
ID ckkfnchnfmgpiejgaacmbngkcjbaaipd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sendme-telegram/ckkfnchnfmgpiejgaacmbngkcjbaaipd
คำอธิบาย Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
ขนาดไฟล์ 515 KB
จำนวนการติดตั้ง 8,054
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2022-06-27
วันที่เผยแพร่ 2016-04-13
คะแนน 4.26/5 รวมทั้งหมด 113 คะแนน
ผู้พัฒนา Oleksandr Us
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "version": "0.3.0",
    "description": "__MSG_extDesc__",
    "author": "Alexander Us",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "icons": {
        "16": "menu_icon.png",
        "48": "sendme48.png",
        "128": "sendme128.png"
    },
    "browser_action": {
        "default_icon": "sendme.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "sendme.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "https:\/\/sendme.duckdns.org\/*"
    ]
}