Ultimate Reddit Browser
Effortlessly browse Reddit! Auto-load comments & navigate posts with your keyboard. Enhance your experience, no new tabs needed!
¿Qué es Ultimate Reddit Browser?
Ultimate Reddit Browser es una extensión de Chrome desarrollada por Ultimate Reddit Browser, y su función principal es "Effortlessly browse Reddit! Auto-load comments & navigate posts with your keyboard. Enhance your experience, no new tabs needed!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Ultimate Reddit Browser
Descarga archivos de extensión Ultimate Reddit Browser en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Introducing the ultimate Reddit browsing experience: a Chrome extension designed to maximize your time on Reddit while providing an enhanced, smooth, and efficient browsing experience. This alpha release is perfect for early adopters who want to try it out and provide valuable feedback to help shape its future development. Currently, our extension works exclusively with the old Reddit design on old.reddit.com, but we have plans to expand compatibility to the new Reddit design in the future. Key Features: Auto-load comments: The extension automatically loads the comments of posts, so you don't have to click through to another page to read the discussion. This saves you time and makes it easier to participate in conversations or simply enjoy the content. In-line comment viewing: Easily display comments without having to open a new tab. This means you can quickly read through the top comments on a post, join the conversation, or move on to the next post without losing your place. Keyboard navigation: Effortlessly browse posts and the comment section with our intuitive keyboard shortcuts. Whether you're an experienced Reddit user or new to the platform, you'll quickly become a pro at navigating your favorite subreddits with ease. Navigate through posts using Ctrl (or Cmd) + arrow keys, and navigate through comments using Shift + arrow keys. Coming Soon: Customizable settings: In the future, you'll be able to tailor your Reddit experience to your preferences with our customizable settings. Choose how many comments to load, set your preferred shortcuts, and more. Compatibility with the new Reddit design: We're actively working on implementing our extension's features for the new Reddit design, bringing the same seamless browsing experience to an even broader audience. Why should you install this extension? Improved Efficiency: Our extension was designed with the goal of making Reddit browsing as seamless and efficient as possible. You'll be able to navigate more quickly and easily, allowing you to make the most of your time on the platform. Enhanced Experience: The in-line comment viewing and keyboard navigation features make your browsing experience more enjoyable and immersive, enabling you to engage with the Reddit community in a whole new way. Simplified Interface: By eliminating the need to constantly open new tabs, our extension simplifies your Reddit browsing experience. You'll be able to enjoy a cleaner, more organized interface that keeps you focused on the content. Be a part of the development process: As an early adopter, you have the unique opportunity to provide feedback on the alpha release of our extension. Your input will help shape the future development and ensure that our extension continues to meet the needs of Reddit users like you. In conclusion, our Chrome extension is an exciting new solution for anyone looking to enhance their Reddit browsing experience. While still in its alpha release, this extension is perfect for early adopters who want to try it out and provide feedback for future improvements. Download our Chrome extension today and revolutionize the way you browse Reddit! Updates: v 0.0.0.3 - Minor bugfixes v 0.0.0.2 - Minor bugfixes
Información Básica de la Extensión
Nombre | Ultimate Reddit Browser |
ID | gpcoljlgolbohdeomhioflgdffdjaile |
URL Oficial | https://chromewebstore.google.com/detail/ultimate-reddit-browser/gpcoljlgolbohdeomhioflgdffdjaile |
Descripción | Effortlessly browse Reddit! Auto-load comments & navigate posts with your keyboard. Enhance your experience, no new tabs needed! |
Tamaño del Archivo | 20.99 KB |
Cantidad de Instalaciones | 38 |
Versión Actual | 0.0.0.3 |
Última Actualización | 2023-05-12 |
Fecha de Publicación | 2023-05-10 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Ultimate Reddit Browser |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.freeprivacypolicy.com/live/dbe472bf-a754-4ddb-9fe9-4cdea5c8cc9b |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ultimate Reddit Browser", "version": "0.0.0.3", "incognito": "spanning", "permissions": [ "storage" ], "description": "Effortlessly browse Reddit! Auto-load comments & navigate posts with your keyboard. Enhance your experience, no new tabs needed!", "action": { "default_popup": "scripts\/popup\/popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/old.reddit.com\/*" ], "js": [ "content-script.js" ], "css": [ "scripts\/styles\/content.css" ], "type": "module" } ], "web_accessible_resources": [ { "resources": [ "scripts\/*" ], "matches": [ "https:\/\/old.reddit.com\/*" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "host_permissions": [ "https:\/\/old.reddit.com\/*" ] } |