Push Message to Mobile

Select content on HTML and push it to mobile device

Push Message to Mobileคืออะไร?

Push Message to Mobile เป็นส่วนขยายของ Chrome ที่พัฒนาโดย www.3x.com.tw และคุณลักษณะหลักของมันคือ "Select content on HTML and push it to mobile device"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Push Message to Mobile

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

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

                        1.
Push html message to mobile
2.
From the computer to the phone, 
you can easily push text or web content to your phone. 
Typing on the Computer → 
phone notified → 
copy, send text messages, open a URL or map.
3.Translation : the process of translating words or text from one language into another.                    

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

ชื่อ Push Message to Mobile Push Message to Mobile
ID bcagbbkmockgkkdggjimkijinbabcapp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/push-message-to-mobile/bcagbbkmockgkkdggjimkijinbabcapp
คำอธิบาย Select content on HTML and push it to mobile device
ขนาดไฟล์ 196 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.9
อัปเดตครั้งล่าสุด 2014-10-30
วันที่เผยแพร่ 2014-10-30
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา www.3x.com.tw
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.9",
    "name": "__MSG_manifest_name__",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_manifest_description__",
    "author": "www.3x.com.tw",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/dict.cn\/*"
            ],
            "js": [
                "my_dict.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "my.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}