CleverPush

Official browser extension for cleverpush.com

Apa itu CleverPush?

CleverPush adalah ekstensi Chrome yang dikembangkan oleh https://cleverpush.com, dan fitur utamanya adalah "Official browser extension for cleverpush.com".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CleverPush

Unduh file ekstensi CleverPush dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama CleverPush CleverPush
ID lkmiahecbccapaijmjabmemcoiidibcl
URL Resmi https://chromewebstore.google.com/detail/cleverpush/lkmiahecbccapaijmjabmemcoiidibcl
Deskripsi Official browser extension for cleverpush.com
Ukuran File 29.55 KB
Jumlah Instalasi 56
Versi Saat Ini 1.3
Terakhir Diperbarui 2021-02-11
Tanggal Publikasi 2020-02-25
Penilaian 5.00/5 Total 3 Penilaian
Pengembang https://cleverpush.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://cleverpush.com
URL Halaman Kebijakan Privasi https://cleverpush.com/privacy
Bahasa yang Didukung 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"
            ]
        }
    ]
}