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."입니다.

확장 프로그램 스크린샷

screenshot

Pusher Receiver 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        [ 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 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
이메일 [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"
    }
}