Pusher Receiver
Receive iOS notifications from a jailbreak tweak called Pusher.
Pusher Receiverとは何ですか?
Pusher Receiverはburkybangによって開発されたChromeの拡張機能で、その主な機能は「Receive iOS notifications from a jailbreak tweak called Pusher.」です。
拡張機能のスクリーンショット
Pusher Receiver拡張機能のCRXファイルをダウンロード
Pusher Receiver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
[ Check in the settings for how to set up. ] Pusher Receiver works with a jailbreak tweak called Pusher, and it uses RestDB.io as its backend. Pusher sends notifications to a database that the user is required to setup in RestDB.io. Pusher Receiver monitors the database for new notifications and then displays them as native browser notifications. RestDB.io is also useful for maintaining user privacy. The user is asked to enter a database name and API key in Pusher Receiver settings. Firefox Version: https://addons.mozilla.org/en-US/firefox/addon/pusher-receiver
拡張機能の基本情報
名前 | Pusher Receiver |
ID | cegndpdokeeegijbkidfcolhomffhibh |
公式URL | https://chromewebstore.google.com/detail/pusher-receiver/cegndpdokeeegijbkidfcolhomffhibh |
説明 | Receive iOS notifications from a jailbreak tweak called Pusher. |
ファイルサイズ | 731 KB |
インストール数 | 149 |
現在のバージョン | 1.7 |
最終更新日 | 2020-01-06 |
公開日 | 2019-12-26 |
評価 | 4.94/5 合計 16 レビュー |
開発者 | burkybang |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://burkybang.com/extensions/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pusher Receiver", "version": "1.7", "description": "Receive iOS notifications from a jailbreak tweak called Pusher.", "manifest_version": 2, "permissions": [ "notifications", "storage", "tabs" ], "optional_permissions": [ "background" ], "web_accessible_resources": [ "img\/icons\/loading.gif" ], "content_security_policy": "script-src 'self' https:\/\/*.restdb.io https:\/\/www.google-analytics.com; object-src 'self'", "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.restdb.io\/*" ], "run_at": "document_start" } ], "icons": { "16": "img\/icon\/icon16.png", "24": "img\/icon\/icon24.png", "32": "img\/icon\/icon32.png", "48": "img\/icon\/icon48.png", "128": "img\/icon\/icon128.png" }, "browser_action": { "default_icon": { "16": "img\/icon\/icon16.png", "24": "img\/icon\/icon24.png", "32": "img\/icon\/icon32.png", "48": "img\/icon\/icon48.png", "128": "img\/icon\/icon128.png" }, "default_title": "Pusher Receiver Settings", "default_popup": "popup.html" } } |