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 |
官方網址 | 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 |
電子郵箱 | [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" } } |