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 |
| 官方網址 | 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
}
]
} | |