Pusher Receiver

Receive iOS notifications from a jailbreak tweak called Pusher.

Pusher Receiver क्या है?

Pusher Receiver burkybang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Receive iOS notifications from a jailbreak tweak called Pusher."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pusher Receiver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}