From 16fe451dfb6262331e8bd1e511b36ed1f1fb1e60 Mon Sep 17 00:00:00 2001 From: practik Date: Thu, 30 May 2019 18:58:44 -0600 Subject: [PATCH] added more prefs & descriptions --- Preferences.md | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/Preferences.md b/Preferences.md index 9534bb8..af36372 100644 --- a/Preferences.md +++ b/Preferences.md @@ -3,30 +3,34 @@ 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. These are the preferences you can set: - ``` { - "video_loop":false, // Always loop - "autoplay":false, - "continue":false, // Autoplay next video - "listen":false, // Audio-only mode by default - "speed":1.0, // Also accepts '0.5', '1.5', '2.0' - "quality":"hd720", // Also accepts 'dash' for 1080p, 'medium', 'small' + "video_loop":true, // Always loop + "annotations":true, // Show annotations + "annotations_subscribed":true, // + "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' + "quality":"hd720", // Also accepts 'dash' for 1080p, 'medium', 'small' "volume":100, - "comments":[ + "comments":[ // Choose which comments to show; also accepts 'reddit' "youtube", - "" // Also accepts 'reddit' + "" ], - "captions":[ // Language captions in order of preference + "captions":[ // Language captions in order of preference "", "", "" ], - "related_videos":true, // Show related videos - "redirect_feed":false, // Redirect homepage to subscription feed - "locale":"en-US", - "dark_mode":false, - "thin_mode":false, // Don't include pictures in page load + "related_videos":true, // Show related videos + "redirect_feed":true, // Redirect homepage to subscription feed + "locale":"en-US", // Choose interface language + "dark_mode":true, // Use dark mode + "thin_mode":true, // Don't include pictures in page load + // For registered users (currently unused): "max_results":40, "sort":"published",