Interact Extension
Construct Self Service Widget
Co to jest Interact Extension?
Interact Extension to rozszerzenie Chrome opracowane przez Arie Schwartzman, a jego główną funkcją jest „Construct Self Service Widget”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Interact Extension
Pobierz pliki rozszerzeń Interact Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension allows you to test and construct iframe html element to be embedded in host page of the Jacada Interact Self Service Widget
Podstawowe informacje o rozszerzeniu
Nazwa | Interact Extension |
ID | fakflooidhdgokgenanljcbfaefabjbm |
Oficjalny URL | https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm |
Opis | Construct Self Service Widget |
Rozmiar pliku | 232 KB |
Liczba instalacji | 0 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2014-07-09 |
Data Publikacji | 2014-07-09 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Arie Schwartzman |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |