RedditInfinity
Simple, lightweight infinite scrolling for reddit
What is RedditInfinity?
RedditInfinity is a Chrome extension developed by https://devinrousso.com, and its main feature is "Simple, lightweight infinite scrolling for reddit".
Extension Screenshots
Download RedditInfinity Extension CRX File
Download RedditInfinity extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Ever browse Reddit and find yourself annoyed at having to click the "next" button? If so, please install RedditInfinity. RedditInfinity is a lightweight extension targeted at "https://www.reddit.com/*" pages that will automatically load the next page when you have scrolled half way down the page. No more clicking, just scroll. Version 1.0: - Created Extension - Infinite scroll will only work on pages that contain a "next" link
Extension Basic Information
Name | RedditInfinity |
ID | klldlkapcnpaanaeamibkgaljpblgkic |
Official URL | https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic |
Description | Simple, lightweight infinite scrolling for reddit |
File Size | 44.01 KB |
Installation Count | 168 |
Current Version | 1.0.4 |
Last Updated | 2016-08-19 |
Publish Date | 2016-08-19 |
Rating | 4.67/5 Total 3 Ratings |
Developer | https://devinrousso.com |
Payment Type | free |
Help Page URL | https://github.com/dcrousso/RedditInfinity/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "1.0.4", "default_locale": "en", "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "js": [ "scripts\/infinity.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/loading.gif" ] } |