Reddit Slideshow

Slide Show for Reddit web just like in the app

Reddit Slideshow란 무엇입니까?

Reddit Slideshow은(는) edgework에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Slide Show for Reddit web just like in the app"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Reddit app provides a slideshow view. The website does not.  Reddit Slideshow implements it.  

Note: You will need a Reddit account and be signed into Reddit for this to work.  For some reason Reddit when not signed in is completely different than Reddit when you're signed in and the not signed in mode totally breaks slideshows.  An update is forthcoming to deal with it. 

Your privacy is respected. There is no tracking or any other hidden behaviors in this extension. The source code is readable for anyone who wants to read it to verify these statements.  

This extension DOES allow Reddit to track its usage along with the other tracking Reddit does on its website. None of this information is transmitted outside of Reddit including to the author of this extension.                    

확장 프로그램 기본 정보

이름 Reddit Slideshow Reddit Slideshow
ID jnjpgagcbhkomjfkfimifpddphbiilkh
공식 URL https://chromewebstore.google.com/detail/reddit-slideshow/jnjpgagcbhkomjfkfimifpddphbiilkh
설명 Slide Show for Reddit web just like in the app
파일 크기 36.16 KB
설치 횟수 689
현재 버전 1.1.7
최근 업데이트 2023-11-23
출시 날짜 2021-09-06
평점 4.44/5 총 9 개의 평점
개발자 edgework
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Slideshow",
    "description": "Slide Show for Reddit web just like in the app",
    "version": "1.1.7",
    "permissions": [
        "activeTab",
        "*:\/\/*.reddit.com\/*",
        "*:\/\/*.redgifs.com\/*",
        "*:\/\/*.gfycat.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Reddit Slideshow"
    },
    "icons": {
        "32": "images\/icon-32-opaque.png",
        "48": "images\/icon-48-opaque.png",
        "128": "images\/icon-128-opaque.png"
    },
    "manifest_version": 2
}