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”。
扩展截图
下载Push Message to Mobile扩展crx文件
下载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.
扩展基本信息
名称 | |
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 } ] } |