LSEG Workspace Browser Extension

LSEG Workspace Browser Extension

Co to jest LSEG Workspace Browser Extension?

LSEG Workspace Browser Extension to rozszerzenie Chrome opracowane przez LSEG Chrome Extension, a jego główną funkcją jest „LSEG Workspace Browser Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia LSEG Workspace Browser Extension

Pobierz pliki rozszerzeń LSEG Workspace Browser 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

                        The extension allows users to run different LSEG Workspace sessions at the same time, on the same computer – you can access Workspace through the desktop app and a web browser without having to close either session.

Key features:
  •  Launcher: provides quick access to all our data from within web pages. Can be accessed via keyboard shortcut (Ctrl + Shift + L) or the extension menu
  •  Screenshot: right-click in any application within Workspace Web to quickly create a screenshot with annotation which can then be copied, saved or sent via email 
  •  Downloads Manager: captures users’ downloads in a single application where they can be managed and retrieved
  •  Tabs Management: quickly locate and navigate to any open Workspace tab 
  •  Open Workspace: shortcut to launch Workspace in a new tab or pop-up window  
  •  System Test and Logs collection: easy access to System Test and Logs collection within the extension to assist with troubleshooting 
  •  Authentication: authentication can be triggered via extension 
  •  Session Sharing: use Workspace Desktop, Workspace Web and Refinitiv 365 simultaneously on the same workstation

Known issues:
  •  /OUT Launcher command is not functioning yet
  •  Private Network not supported yet due to unexpected deactivation of the extension. This issue will be resolved at a later date

Disclaimer: Extension is provided ‘as-is’ without warranty of any kind. All warranties, conditions and other terms implied by statute or common law including, without limitation, warranties or other terms as to suitability, merchantability, satisfactory quality and fitness for a particular purpose, are excluded to the maximum extent permitted by applicable laws.                    

Podstawowe informacje o rozszerzeniu

Nazwa LSEG Workspace Browser Extension LSEG Workspace Browser Extension
ID dcahcfijgglejjfejidnfkghjabfobpb
Oficjalny URL https://chromewebstore.google.com/detail/lseg-workspace-browser-ex/dcahcfijgglejjfejidnfkghjabfobpb
Opis LSEG Workspace Browser Extension
Rozmiar pliku 380 KB
Liczba instalacji 173
Aktualna Wersja 2.3.0
Ostatnia Aktualizacja 2023-10-29
Data Publikacji 2021-08-13
Deweloper LSEG Chrome Extension
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.lseg.com/en/policies/privacy-and-cookie-statement
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LSEG Workspace Browser Extension",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiK6+2sRmJTV3osO+v\/ha9v+MtPIqYnIeQSLEkz8hxiXlAf+GQXPe\/fDN4wpt72GNAmTslAcMDUt+0yORIW8+H4H8UWGCgSVjSv0fDoggVve3GgfshrM5\/DFf8GsBUshH5\/eT5ZBqAkCVn5ek+gUq7PiQ3oxCJ9sNryoS15KdOd2MkfRTNAKnZvncYBNrg3Ynzgv5nKrEP2HTbIgrt7XGIMD0hqt9c3gcCFRs3y4s\/P4n3eou1ot50pb6h7DgHSwKJb6\/gN6M37cCC5xTfQ9OZPImw6gAtdso7AE8lp6P1QyCctCKB\/5dLJ\/ydiH4A\/LPUE9q6YGidPEKtHAW6qqWbQIDAQAB",
    "description": "LSEG Workspace Browser Extension",
    "icons": {
        "128": "lseg_ws.png"
    },
    "version": "2.3.0",
    "permissions": [
        "tabs",
        "storage",
        "background",
        "activeTab",
        "",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "nativeMessaging",
        "cookies",
        "contextMenus",
        "desktopCapture",
        "downloads",
        "https:\/\/*.thomsonreuters.com\/",
        "https:\/\/*.thomsonreuters.net\/",
        "https:\/\/*.thomsonreuters.biz\/",
        "https:\/\/*.refinitiv.com\/",
        "https:\/\/*.refinitiv.net\/",
        "https:\/\/*.refinitiv.biz\/",
        "https:\/\/*.reutest.com\/",
        "https:\/\/*.reutest.net\/",
        "https:\/\/*.reutest.biz\/"
    ],
    "web_accessible_resources": [
        "static\/*",
        "dark_icon.png",
        "light_icon.png",
        "lseg_ws.png"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.refinitiv.com https:\/\/cdn.qa.refinitiv.com https:\/\/cdn.ppe.refinitiv.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.pwj.com\/T1\/*\/widget*",
                "*:\/\/*.pwj.com\/*\/ONE\/chrome\/widget*"
            ],
            "js": [
                "workspace-sdk-helper.js"
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "unauthenticated_icon.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens LSEG Workspace Extension"
        },
        "toggle-launcher": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggles Launcher"
        }
    }
}