RedditInfinity

Simple, lightweight infinite scrolling for reddit

Qu'est-ce que RedditInfinity ?

RedditInfinity est une extension Chrome développée par https://devinrousso.com, et sa fonction principale est "Simple, lightweight infinite scrolling for reddit".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension RedditInfinity

Téléchargez les fichiers d'extension RedditInfinity au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom RedditInfinity RedditInfinity
ID klldlkapcnpaanaeamibkgaljpblgkic
URL Officiel https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic
Description Simple, lightweight infinite scrolling for reddit
Taille du Fichier 44.01 KB
Nombre d'Installations 168
Version Actuelle 1.0.4
Dernière Mise à Jour 2016-08-19
Date de Publication 2016-08-19
Évaluation 4.67/5 Total 3 Évaluations
Développeur https://devinrousso.com
Type de Paiement free
URL de la Page d'Aide https://github.com/dcrousso/RedditInfinity/issues
Langues Prises en Charge 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"
    ]
}