BBO Visual Assist

BBO Visual Assist

Co to jest BBO Visual Assist?

BBO Visual Assist to rozszerzenie Chrome opracowane przez John Lambe, a jego główną funkcją jest „BBO Visual Assist”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia BBO Visual Assist

Pobierz pliki rozszerzeń BBO Visual Assist 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

                        Assists visually challenged users to play Bridge on the BBO (BridgeBase Online) website by:

1.	Supporting voice commands and keyboard shortcuts.
2.	Reading cards, bids, score etc. under the mouse cursor.
3.	Reading chat messages and other unsolicited messages
4.	Introducing each board, the vulnerability, and the dealer.
5.	Giving a brief description of your hand and dummy’s.
6.	Describing actions such as bids, cards played, alerts and claims.

The extension can be tailored to the required level of assistance by enabling or disabling the appropriate functions using the extension’s pop-up window.  

Full documentation is available via the extension's pop-up window. Use the jigsaw symbol in the top right toolbar of Google Chrome to display the pop-up window and to pin the pop-up window to the toolbar.

-----------------------------------------------------------------------------------------------------------------------------------------------
Version 6.8 (4th Mar 2024)
•	Cache of out-of-date elements cleared on logoff so now possible to log back in without refreshing the browser page.

Version 6.7 (14th Feb 2024)
•	Required updated since BBO changed so some elements are not available until after the user logs into BBO.

Version 6.6 (6th Sept 2023)
•	Reading out of the cards in a suit slowed down.

Version 6.5 (14th July 2023)
•	Board described again if player re-joins a board.
•	Fixed bug which left the microphone active if no speech for 9 seconds

Version 6.4 (22nd Jun 2023)
•	Voice command 'Auction' corrected to report 3 passes if you're in the pass-out seat.
•	Cut and Paste commands will not be beeped; similar for other standard keys.
•	Can no longer used Ctrl+F5 to hear dummy's spades prior to start of the board.
•	Voice commands to play cards patched so suit isn’t always required.

Version 6.3  (18th Jun 2023)
•	Fixed auction speech actions that stopped working due to BBO changing the internal layout of the auction box.
•	During testing detected that the speech recognition fails to recognise numbers from one to ten unless followed by the suit. This could not be fixed as it appears to be a problem with the Chrome API so will need to be further investigated.
•	Pressing the  key will now just perform a single action even if a dialogue box is open.

Version 6.2  (22nd Jan 2023)

•	Bug Fix: Mouse clicks within the phrase translation page stopped working under latest Chrome Build 109.0.5414.75

Version 6.1
•	Bug Fix: Mouse clicks stopped working under latest Chrome Build 109.0.5414.75

Version 6.0 
•	Keyboard entry for bids and card playing.
•	Voice commands to repeat bids or the cards played.
•	Voice commands to announce who’s turn it is to play and the number of tricks won.
•	Voice command to announce the number of minutes remaining in the current round.
•	Additional error messages.                    

Podstawowe informacje o rozszerzeniu

Nazwa BBO Visual Assist BBO Visual Assist
ID kdknilcahppjpicfclgaenphlcdjkbcm
Oficjalny URL https://chromewebstore.google.com/detail/bbo-visual-assist/kdknilcahppjpicfclgaenphlcdjkbcm
Opis BBO Visual Assist
Rozmiar pliku 413 KB
Liczba instalacji 119
Aktualna Wersja 6.8
Ostatnia Aktualizacja 2024-03-05
Data Publikacji 2020-11-10
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper John Lambe
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BBO Visual Assist",
    "version": "6.8",
    "description": "BBO Visual Assist",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/micOff.gif",
                "images\/micOff.png",
                "images\/micPulse.png",
                "images\/micPulse.gif",
                "images\/micError.png"
            ],
            "matches": [
                "https:\/\/www.bridgebase.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "BBO Visual Assist",
        "default_popup": "popup.html",
        "default_icon": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bridgebase.com\/v3\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "BVAClass.js",
                "StopWatch.js",
                "mouseReader.js",
                "translation.js",
                "speechToText.js",
                "constants.js",
                "helperJCL.js",
                "voiceCmds.js",
                "BBOA_Content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "tts",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.bridgebase.com\/v3\/*"
    ]
}