mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-19 05:29:59 +00:00
[cookies] Add --cookies-from-browser
support for MS Store Firefox (#11731)
Authored by: wesson09
This commit is contained in:
parent
cfa76f35d2
commit
354cb4026c
1 changed files with 4 additions and 1 deletions
|
@ -195,7 +195,10 @@ def _extract_firefox_cookies(profile, container, logger):
|
|||
|
||||
def _firefox_browser_dirs():
|
||||
if sys.platform in ('cygwin', 'win32'):
|
||||
yield os.path.expandvars(R'%APPDATA%\Mozilla\Firefox\Profiles')
|
||||
yield from map(os.path.expandvars, (
|
||||
R'%APPDATA%\Mozilla\Firefox\Profiles',
|
||||
R'%LOCALAPPDATA%\Packages\Mozilla.Firefox_n80bbvh6b1yt2\LocalCache\Roaming\Mozilla\Firefox\Profiles',
|
||||
))
|
||||
|
||||
elif sys.platform == 'darwin':
|
||||
yield os.path.expanduser('~/Library/Application Support/Firefox/Profiles')
|
||||
|
|
Loading…
Reference in a new issue