Push Notifications
Show push notification for HelpTap new chats / jobs for Experts
什么是Push Notifications?
Push Notifications是由Rahul Golwalkar开发的Chrome扩展程序,该扩展的主要功能是“Show push notification for HelpTap new chats / jobs for Experts”。
扩展截图
下载Push Notifications扩展crx文件
下载Push Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Play audio in Google Chrome for background tabs 扩展基本信息
| 名称 | |
| ID | hbapphlkmighdfjnfiooddomllmdbnee |
| 官方URL | https://chromewebstore.google.com/detail/push-notifications/hbapphlkmighdfjnfiooddomllmdbnee |
| 简介 | Show push notification for HelpTap new chats / jobs for Experts |
| 文件大小 | 114 KB |
| 安装次数 | 119 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2016-02-12 |
| 上架时间 | 2016-02-12 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Rahul Golwalkar |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://helptap.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Push Notifications",
"version": "0.1.1",
"manifest_version": 2,
"description": "Show push notification for HelpTap new chats \/ jobs for Experts",
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"homepage_url": "https:\/\/helptap.com\/",
"permissions": [
"management",
"notifications",
"*:\/\/*.helptap.com\/*"
],
"background": {
"page": "background.html"
},
"web_accessible_resources": [
"images\/icon.png"
],
"externally_connectable": {
"matches": [
"*:\/\/*.helptap.com\/*"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.helptap.com\/*"
],
"js": [
"scripts\/jquery.min.js",
"scripts\/content-script.js"
]
}
]
} | |