mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
25 lines
682 B
TypeScript
25 lines
682 B
TypeScript
"use strict";
|
|
|
|
import { ReceiverSelectorType } from "./background/receiverSelector";
|
|
import { Options } from "./lib/options";
|
|
|
|
|
|
export default {
|
|
bridgeApplicationName: APPLICATION_NAME
|
|
, mediaEnabled: true
|
|
, mediaOverlayEnabled: false
|
|
, mediaSyncElement: false
|
|
, mediaStopOnUnload: false
|
|
, localMediaEnabled: true
|
|
, localMediaServerPort: 9555
|
|
, mirroringEnabled: false
|
|
, mirroringAppId: MIRRORING_APP_ID
|
|
, receiverSelectorType: ReceiverSelectorType.Popup
|
|
, receiverSelectorCloseIfFocusLost: true
|
|
, receiverSelectorWaitForConnection: true
|
|
, userAgentWhitelistEnabled: true
|
|
, userAgentWhitelist: [
|
|
"https://www.netflix.com/*"
|
|
]
|
|
} as Options;
|