FastStream Video Player

Stream without buffering, a great video player and download accelerator all in one.

Co to jest FastStream Video Player?

FastStream Video Player to rozszerzenie Chrome opracowane przez https://faststream.online, a jego główną funkcją jest „Stream without buffering, a great video player and download accelerator all in one.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia FastStream Video Player

Pobierz pliki rozszerzeń FastStream Video Player 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

                        Tired of having to wait while videos buffer? Frustrated by a website's lack of accessibility features? This extension will replace videos on websites with an accessible video player designed for your convenience.

1. Automatic fragmentation and parallel requests for up to 6x faster download speeds. Watch videos without interruptions by predownloading the video in the background.
2. Advanced subtitling features include: customizable subtitle appearance, built-in OpenSubtitles support to find subtitles on the internet, and an intuitive subtitle syncing tool to adjust subtitle timings on the fly.
3. Adjustable audio dynamics (equalizer, compressor, mixer, volume booster), and video settings (brightness, contrast, hue, LMS daltonization for color blindness) for your unique audiovisual preferences.
4. 20+ remappable keybinds and accessible tool buttons for easy control of the player.
5. Available in multiple languages! Translated into Spanish and Japanese by the FastStream community. Support for more languages is coming soon!

The player currently supports:
- MP4 videos (.mp4)
- HLS streams (.m3u8)
- DASH streams (.mpd)
- Youtube (download not supported on Chrome unless manually installed due to Web Store policy)

To use the player, simply:
1. Go to any website you want with a video and toggle the extension on. Any video it detects will be automatically replaced with the FastStream player.
2. Alternatively, you can also simply click on or navigate to a stream manifest file (m3u8/mpd) to begin playing.
3. Navigate to a new tab and press the extension icon to go to the player. Play sources detected on other tabs through the Sources Browser. You can also drag and drop video files from your computer. 

Notes:
- Livestreams are not supported. They will not be supported in the near future.
- This player will not function with DRM protected content. This is intended. Please be mindful of how you use this tool. FastStream should not be used to infringe copyright.
- This player is still a work-in-progress. Please report any bugs to the Github issue tracker here: https://github.com/Andrews54757/FastStream/issues
- For your privacy, this extension does not collect telemetry. Nor does it require additional resources from the internet to function. It will work fully offline. Feel free to browse the codebase on Github.
- We take accessibility concerns seriously. If you need accommodations not available in the latest version, please contact us and we will work on it ASAP. Also, please feel free to submit feature requests or suggestions on the Github issue tracker!                    

Podstawowe informacje o rozszerzeniu

Nazwa FastStream Video Player FastStream Video Player
ID kkeakohpadmbldjaiggikmnldlfkdfog
Oficjalny URL https://chromewebstore.google.com/detail/faststream-video-player/kkeakohpadmbldjaiggikmnldlfkdfog
Opis Stream without buffering, a great video player and download accelerator all in one.
Rozmiar pliku 4.8 MB
Liczba instalacji 3,000
Aktualna Wersja 1.2.24
Ostatnia Aktualizacja 2024-02-29
Data Publikacji 2023-02-24
Ocena 4.69/5 Łącznie 49 Oceny
Deweloper https://faststream.online
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://faststream.online/
Adres URL Strony Pomocy https://github.com/Andrews54757/FastStream/issues
Adres URL Strony Polityki Prywatności https://gist.github.com/Andrews54757/5e5ed6fec4d431b3630150d96bd73769
Obsługiwane Języki en,es,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.2.24",
    "author": "Andrew S",
    "options_ui": {
        "page": "player\/options\/index.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_title": "__MSG_extension_toggle_label__"
    },
    "background": {
        "service_worker": "background\/background.mjs",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "incognito": "split",
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "player\/index.html",
                "player\/options\/index.html",
                "temp\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "minimum_chrome_version": "114"
}