Reddit Slideshow
Slide Show for Reddit web just like in the app
Reddit Slideshow क्या है?
Reddit Slideshow edgework द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Slide Show for Reddit web just like in the app"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Slideshow एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |