CleverPush

Official browser extension for cleverpush.com

What is CleverPush?

CleverPush is a Chrome extension developed by https://cleverpush.com, and its main feature is "Official browser extension for cleverpush.com".

Extension Screenshots

screenshot

Download CleverPush Extension CRX File

Download CleverPush extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name CleverPush CleverPush
ID lkmiahecbccapaijmjabmemcoiidibcl
Official URL https://chromewebstore.google.com/detail/cleverpush/lkmiahecbccapaijmjabmemcoiidibcl
Description Official browser extension for cleverpush.com
File Size 29.55 KB
Installation Count 56
Current Version 1.3
Last Updated 2021-02-11
Publish Date 2020-02-25
Rating 5.00/5 Total 3 Ratings
Developer https://cleverpush.com
Email [email protected]
Payment Type free
Extension Website https://cleverpush.com
Privacy Policy Page URL https://cleverpush.com/privacy
Supported Languages 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"
            ]
        }
    ]
}