Accops Native Client

Send a message to a native application.

Accops Native Client क्या है?

Accops Native Client Accops द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send a message to a native application."।

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

screenshot
screenshot

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

crx प्रारूप में Accops Native Client एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Webpage and native applications can exchange messages through Accops Native Client extension using an API that is similar to the other message passing APIs. Native applications that support this feature must register a native messaging host that knows how to communicate with the extension. Chrome starts the host in a separate process and communicates with it using standard input and standard output streams.                    

एक्सटेंशन की मूल जानकारी

नाम Accops Native Client Accops Native Client
ID kgnnlaamhmjmhkeegiaimkfojcagjcml
आधिकारिक URL https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml
विवरण Send a message to a native application.
फ़ाइल का आकार 24.53 KB
स्थापना संख्या 4,268
वर्तमान संस्करण 3.1.0
अंतिम अपडेट 2022-07-06
प्रकाशन तिथि 2019-02-01
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Accops
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.accops.com/privacy-policy
सहायता पृष्ठ URL http://support.accops.com/support/home
गोपनीयता नीति पृष्ठ URL https://www.accops.com/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accops Native Client",
    "short_name": "Accops NativeClient",
    "version": "3.1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "33",
    "description": "Send a message to a native application.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
                "https:\/\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
        "manifest.json"
    ],
    "permissions": [
        "nativeMessaging"
    ]
}