RedditInfinity

Simple, lightweight infinite scrolling for reddit

Was ist RedditInfinity?

RedditInfinity ist eine Chrome-Erweiterung, die von https://devinrousso.com entwickelt wurde, und ihr Hauptmerkmal ist "Simple, lightweight infinite scrolling for reddit".

Erweiterungsscreenshots

screenshot
screenshot

RedditInfinity-Erweiterungs-CRX-Datei herunterladen

Laden Sie RedditInfinity-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name RedditInfinity RedditInfinity
ID klldlkapcnpaanaeamibkgaljpblgkic
Offizielle URL https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic
Beschreibung Simple, lightweight infinite scrolling for reddit
Dateigröße 44.01 KB
Installationsanzahl 168
Aktuelle Version 1.0.4
Letztes Update 2016-08-19
Veröffentlichungsdatum 2016-08-19
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler https://devinrousso.com
Zahlungsart free
Hilfeseite URL https://github.com/dcrousso/RedditInfinity/issues
Unterstützte Sprachen 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"
    ]
}