Reddit Scroller

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

Reddit Scroller란 무엇입니까?

Reddit Scroller은(는) penwapps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically scroll to the next Reddit post after however many seconds the user wants."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Reddit Scroller 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}