RedditInfinity

Simple, lightweight infinite scrolling for reddit

Τι είναι το RedditInfinity;

Το RedditInfinity είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://devinrousso.com, και η κύρια λειτουργία του είναι "Simple, lightweight infinite scrolling for reddit".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης RedditInfinity

Λήψη αρχείων επέκτασης RedditInfinity σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα RedditInfinity RedditInfinity
ID klldlkapcnpaanaeamibkgaljpblgkic
Επίσημο URL https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic
Περιγραφή Simple, lightweight infinite scrolling for reddit
Μέγεθος Αρχείου 44.01 KB
Αριθμός Εγκαταστάσεων 168
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2016-08-19
Ημερομηνία Δημοσίευσης 2016-08-19
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://devinrousso.com
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/dcrousso/RedditInfinity/issues
Υποστηριζόμενες Γλώσσες 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"
    ]
}