Push Message to Mobile

Select content on HTML and push it to mobile device

Push Message to Mobile là gì?

Push Message to Mobile là một tiện ích mở rộng Chrome được phát triển bởi www.3x.com.tw, và tính năng chính của nó là "Select content on HTML and push it to mobile device".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Push Message to Mobile

Tải xuống các tệp mở rộng Push Message to Mobile 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

                        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.                    

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

Tên Push Message to Mobile Push Message to Mobile
ID bcagbbkmockgkkdggjimkijinbabcapp
URL Chính Thức https://chrome.google.com/webstore/detail/push-message-to-mobile/bcagbbkmockgkkdggjimkijinbabcapp
Mô tả Select content on HTML and push it to mobile device
Kích Thước Tệp 196 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2014-10-30
Ngày Phát Hành 2014-10-30
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển www.3x.com.tw
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}