added more prefs & descriptions

This commit is contained in:
practik 2019-05-30 18:58:44 -06:00 committed by Perflyst
parent 28d1880526
commit 16fe451dfb

View File

@ -3,19 +3,22 @@ Preferences for Invidious can be stored in a cookie named `PREFS`. This cookie
If setting the cookie value yourself, the value must be in JSON format and then URL-encoded. If setting the cookie value yourself, the value must be in JSON format and then URL-encoded.
These are the preferences you can set: These are the preferences you can set:
``` ```
{ {
"video_loop":false, // Always loop "video_loop":true, // Always loop
"autoplay":false, "annotations":true, // Show annotations
"continue":false, // Autoplay next video "annotations_subscribed":true, //
"listen":false, // Audio-only mode by default "autoplay":true, // Autoplay current video
"continue":true, // Autoplay next video
"continue_autoplay":true, //
"listen":true, // Audio-only mode by default
"local": true, // Proxy requests via Invidious instance for privacy
"speed":1.0, // Also accepts '0.5', '1.5', '2.0' "speed":1.0, // Also accepts '0.5', '1.5', '2.0'
"quality":"hd720", // Also accepts 'dash' for 1080p, 'medium', 'small' "quality":"hd720", // Also accepts 'dash' for 1080p, 'medium', 'small'
"volume":100, "volume":100,
"comments":[ "comments":[ // Choose which comments to show; also accepts 'reddit'
"youtube", "youtube",
"" // Also accepts 'reddit' ""
], ],
"captions":[ // Language captions in order of preference "captions":[ // Language captions in order of preference
"", "",
@ -23,10 +26,11 @@ These are the preferences you can set:
"" ""
], ],
"related_videos":true, // Show related videos "related_videos":true, // Show related videos
"redirect_feed":false, // Redirect homepage to subscription feed "redirect_feed":true, // Redirect homepage to subscription feed
"locale":"en-US", "locale":"en-US", // Choose interface language
"dark_mode":false, "dark_mode":true, // Use dark mode
"thin_mode":false, // Don't include pictures in page load "thin_mode":true, // Don't include pictures in page load
// For registered users (currently unused): // For registered users (currently unused):
"max_results":40, "max_results":40,
"sort":"published", "sort":"published",