BBViewer

BBViewer is designed to provide a better experience for Big Brother Live Feeders

Vad är BBViewer?

BBViewer är en Chrome-tillägg utvecklad av liquid8d, och dess huvudfunktion är "BBViewer is designed to provide a better experience for Big Brother Live Feeders".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner BBViewer-förlängningens CRX-fil

Ladda ner BBViewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension is intended for Big Brother US Live Feed watchers. It will modify the appearance of the Paramount+ Live Feed page and add additional functionality to the Live Feed player.

*You must be an Paramount+ subscriber to access the Big Brother Live Feeds and for this extension to be useful.

BBViewer is not affiliated in any way with Paramount/CBS/Viacom. You should not contact them for support while using this extension, as modifications made by the extension could cause issues unrelated to their website.

I hope you have enjoyed the BBViewer application to watch feeds in the past. Well now you can transform the Live Feed feed player into something more familiar and still enjoy some of  its awesome features right in the browser:

 - Full page player
 - Double-click Camera switching
 - Audio Pan (useful for watching both sides of Quad cam)
 - Quality switching
 - Playback Rate
 - Adjust Aspect Ratio
 - Extended Watching (to extend timeout for Still Watching message)
 - Popup player (open viewer  in a popup window)
 - Picture in Picture support
 - Custom Seek buttons (with adjustable seek times in extension settings)
 - User submitted bookmarks
 - Display Big Brother time (Pacific) instead of Local
 - Hotkeys (when menu is not open):
     - 1-5 = switch Cameras
     - B = Bookmarks
     - A = Add Bookmark
     - F = Fullscreen
     - I = Picture in Picture
     - M = Mute
     - L = Toggle Live Feed tabs (Chat, Highlights, Flashback)
     - P = Pause
     - S = Share url for current time/cam
     - T = Toggle Live Feed Thumbnails
     - Q/W/E = Audio Pan Left/Center/Right)
     - Comma/Period = Seek back-forward small
     - Semicolon/Apostrophe = Seek back-forward med
     - Arrow Left/Right = Seek back/forward large
     - Arrow Down = jump to live
     - Backslash = Toggle Boss screen

New in 1.0.1:
* put version number in menu
* change back to L/R for buttons
* fix audio pan?
* day display wrong with url changes (adding a hash or ? on url would cause day to be wrong)
* save module settings
* hotkeys should now work even with menu open, and only deactivate if an input field is focused
* most keys won't trigger controls showing (i.e. media keys and print screen can be used) and will prevent controls from hiding
* return playback to 1x speed if at end of stream/live
* moment library files are now included with extension, this should resolve 'no time displayed' or 'bookmarks not loaded when changing to BBT time' issues
* controls won't hide when chat is active (clicking in chat, not just the chat tab)
* date/time corrections for flashbacks and bookmark times (some bookmarks may still be incorrect, will work on updating those)
* fix bug that caused drag seek on slider to drag time instead, preventing further slider drags
* module fixes
    * modules are now sorted alphabetically
    * camera double-click (new): double-clicking cameras is now its own module and enabled by default (you could disable the camera switcher if you want)
    * watermark: settings can be changed now, enable Watermark module and click it to modify
    * feedsbot: shows as 'UNAVAILABLE' until it works (waiting on dev to enable websockets), don't keep reconnecting if disabled
    * notify: fixes to control shown messages, stop updating if module is disabled                    

Grundläggande Information om Tillägg

Namn BBViewer BBViewer
ID lofnjlciokhgalebinnlfhkicepmmceh
Officiell webbadress https://chromewebstore.google.com/detail/bbviewer/lofnjlciokhgalebinnlfhkicepmmceh
Beskrivning BBViewer is designed to provide a better experience for Big Brother Live Feeders
Filstorlek 793 KB
Antal Installationer 11,946
Aktuell Version 1.0.1
Senast Uppdaterad 2023-08-22
Publiceringsdatum 2020-08-09
Betyg 4.98/5 Totalt 60 Betyg
Utvecklare liquid8d
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://goodiesfor.me/bbviewer/chrome-extension/
Hjälpsida URL https://goodiesfor.me/bbviewer/chrome-extension/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BBViewer",
    "version": "1.0.1",
    "description": "BBViewer is designed to provide a better experience for Big Brother Live Feeders",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.paramountplus.com\/shows\/big_brother\/live_feed\/stream\/*",
                "https:\/\/www.paramountplus.com\/shows\/celebrity-big-brother\/live_feed\/stream\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "icon.png",
        "css\/*.css",
        "images\/*.png",
        "images\/*.jpg",
        "images\/*.gif",
        "js\/*.js"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}