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文件

下載Reddit Slideshow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}