CleverPush
Official browser extension for cleverpush.com
什么是CleverPush?
CleverPush是由https://cleverpush.com开发的Chrome扩展程序,该扩展的主要功能是“Official browser extension for cleverpush.com”。
扩展截图
下载CleverPush扩展crx文件
下载CleverPush扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Official browser extension for the push notification service cleverpush.com Features: - Send a notification and automatically use the currently open tab as the URL - Optionally also push to existing Firebase apps
扩展基本信息
名称 | CleverPush |
ID | lkmiahecbccapaijmjabmemcoiidibcl |
官方URL | https://chromewebstore.google.com/detail/cleverpush/lkmiahecbccapaijmjabmemcoiidibcl |
简介 | Official browser extension for cleverpush.com |
文件大小 | 29.55 KB |
安装次数 | 56 |
当前版本 | 1.3 |
更新时间 | 2021-02-11 |
上架时间 | 2020-02-25 |
评分 | 5.00/5 共3次评分 |
开发者 | https://cleverpush.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://cleverpush.com |
隐私政策页面URL | https://cleverpush.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CleverPush", "version": "1.3", "manifest_version": 2, "description": "Official browser extension for cleverpush.com", "homepage_url": "https:\/\/cleverpush.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "CleverPush", "default_popup": "src\/browser_action\/popup.html" }, "permissions": [ "tabs", "cookies", "webRequest", "webRequestBlocking", "https:\/\/*.google.com\/", "https:\/\/console.firebase.google.com\/" ], "content_security_policy": "script-src 'self' blob: filesystem: 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.cleverpush.com\/*", "http:\/\/localhost:3000\/*" ], "js": [ "src\/content\/cleverpush.js" ] } ] } |