Push Message to Mobile

Select content on HTML and push it to mobile device

Push Message to Mobile란 무엇입니까?

Push Message to Mobile은(는) www.3x.com.tw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select content on HTML and push it to mobile device"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Push Message to Mobile 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}