A Chrome extension that automatically modifies API requests to Play Now — a Polish streaming service provided by Play. The extension sets the platform parameter to APPLE_TV to enable additional features.
- Clone or download this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the directory containing the extension files
- The extension should now be installed and active
- Sklonuj lub pobierz to repozytorium
- Otwórz Chrome i przejdź do
chrome://extensions/ - Włącz "Tryb programisty" w prawym górnym rogu
- Kliknij "Załaduj rozpakowane" i wybierz katalog zawierający pliki rozszerzenia
- Rozszerzenie powinno być teraz zainstalowane i aktywne
- Download the latest CRX file from the Releases page
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right corner
- Drag and drop the downloaded CRX file onto the extensions page
- Confirm the installation when prompted
- Pobierz najnowszy plik CRX ze strony Releases
- Otwórz Chrome i przejdź do
chrome://extensions/ - Włącz "Tryb programisty" w prawym górnym rogu
- Przeciągnij i upuść pobrany plik CRX na stronę rozszerzeń
- Potwierdź instalację po wyświetleniu monitu
- Download the latest XPI file from the Releases page
- Open Firefox and navigate to
about:addons - Click the gear icon and select "Install Add-on From File..."
- Select the downloaded XPI file
- Confirm the installation when prompted
- Pobierz najnowszy plik XPI ze strony Releases
- Otwórz Firefox i przejdź do
about:addons - Kliknij ikonę koła zębatego i wybierz "Zainstaluj dodatek z pliku..."
- Wybierz pobrany plik XPI
- Potwierdź instalację po wyświetleniu monitu
The extension automatically modifies all requests to https://playnow.pl/api/* by:
- Adding
platform=APPLE_TVif the parameter doesn't exist - Replacing the existing
platformparameter withAPPLE_TVif it exists
manifest.json- Extension configurationrules.json- Declarative rules for request modification
This extension uses Chrome's Manifest V3 and the declarativeNetRequest API to modify requests without using a background script.
MIT