Reddit Scroller

Automatically scroll to the next Reddit post after however many seconds the user wants.

Reddit Scroller क्या है?

Reddit Scroller penwapps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically scroll to the next Reddit post after however many seconds the user wants."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Scroller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a small Chrome Extension which you can use to scroll down to the next Reddit post automatically. You set the time you want to see each post, click the button, and off you go!
Although I made it work for old.reddit.com as well, you will get the best experience on the new version.

This is the first Chrome Extension I've ever made, so expect to see bugs :)
I'll try my best to keep it updated and (in case this is ever used by someone who's not a friend of mine), listen to feedback and fix bugs.

You can find the source code on: https://github.com/PenWallet/Reddit_Scroller

Thanks to two friends of mine for helping me with HTML&CSS and the app icons, respectively.                    

एक्सटेंशन की मूल जानकारी

नाम Reddit Scroller Reddit Scroller
ID obbeaiiaplojgmllajpdcgbblmgdmjnf
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-scroller/obbeaiiaplojgmllajpdcgbblmgdmjnf
विवरण Automatically scroll to the next Reddit post after however many seconds the user wants.
फ़ाइल का आकार 22.33 KB
स्थापना संख्या 431
वर्तमान संस्करण 0.6.0
अंतिम अपडेट 2021-02-05
प्रकाशन तिथि 2020-04-04
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर penwapps
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.6.0",
    "description": "__MSG_appDesc__",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "scroller.js"
            ]
        },
        {
            "matches": [
                "https:\/\/old.reddit.com\/*"
            ],
            "js": [
                "scrollerOld.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_appName__"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png",
        "16": "icons\/16.png"
    },
    "default_locale": "en"
}