Reddit Slideshow
Slide Show for Reddit web just like in the app
Wat is Reddit Slideshow?
Reddit Slideshow is een Chrome-extensie ontwikkeld door edgework, en de belangrijkste functie is "Slide Show for Reddit web just like in the app".
Extensie Screenshots
Download het CRX-bestand van de extensie Reddit Slideshow
Download Reddit Slideshow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Reddit Slideshow |
ID | jnjpgagcbhkomjfkfimifpddphbiilkh |
Officiële URL | https://chromewebstore.google.com/detail/reddit-slideshow/jnjpgagcbhkomjfkfimifpddphbiilkh |
Beschrijving | Slide Show for Reddit web just like in the app |
Bestandsgrootte | 36.16 KB |
Aantal Installaties | 689 |
Huidige Versie | 1.1.7 |
Laatst Bijgewerkt | 2023-11-23 |
Publicatiedatum | 2021-09-06 |
Beoordeling | 4.44/5 Totaal 9 Beoordelingen |
Ontwikkelaar | edgework |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |