CleverPush

Official browser extension for cleverpush.com

CleverPushとは何ですか?

CleverPushはhttps://cleverpush.comによって開発されたChromeの拡張機能で、その主な機能は「Official browser extension for cleverpush.com」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
            ]
        }
    ]
}