Interact Extension

Construct Self Service Widget

Interact Extension क्या है?

Interact Extension Arie Schwartzman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Construct Self Service Widget"।

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

screenshot

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

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

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

                        This extension allows you to test and construct iframe html element to be embedded in host page of the Jacada Interact Self Service Widget                    

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

नाम Interact Extension Interact Extension
ID fakflooidhdgokgenanljcbfaefabjbm
आधिकारिक URL https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm
विवरण Construct Self Service Widget
फ़ाइल का आकार 232 KB
स्थापना संख्या 0
वर्तमान संस्करण 1.4
अंतिम अपडेट 2014-07-09
प्रकाशन तिथि 2014-07-09
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Arie Schwartzman
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interact Extension",
    "manifest_version": 2,
    "version": "1.4",
    "description": "Construct Self Service Widget",
    "browser_action": {
        "default_title": "Self Service Widget",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "postmessage.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}