Push Message to Mobile

Select content on HTML and push it to mobile device

O que é Push Message to Mobile?

Push Message to Mobile é uma extensão do Chrome desenvolvida por www.3x.com.tw, e sua principal característica é "Select content on HTML and push it to mobile device".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Push Message to Mobile

Baixe arquivos de extensão Push Message to Mobile no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Push Message to Mobile Push Message to Mobile
ID bcagbbkmockgkkdggjimkijinbabcapp
URL Oficial https://chrome.google.com/webstore/detail/push-message-to-mobile/bcagbbkmockgkkdggjimkijinbabcapp
Descrição Select content on HTML and push it to mobile device
Tamanho do Arquivo 196 KB
Contagem de Instalações 14
Versão Atual 1.9
Última Atualização 2014-10-30
Data de Publicação 2014-10-30
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor www.3x.com.tw
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}