Reddit Slideshow
Slide Show for Reddit web just like in the app
Reddit Slideshow là gì?
Reddit Slideshow là một tiện ích mở rộng Chrome được phát triển bởi edgework, và tính năng chính của nó là "Slide Show for Reddit web just like in the app".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reddit Slideshow
Tải xuống các tệp mở rộng Reddit Slideshow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Slideshow |
ID | jnjpgagcbhkomjfkfimifpddphbiilkh |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-slideshow/jnjpgagcbhkomjfkfimifpddphbiilkh |
Mô tả | Slide Show for Reddit web just like in the app |
Kích Thước Tệp | 36.16 KB |
Số Lần Cài Đặt | 689 |
Phiên Bản Hiện Tại | 1.1.7 |
Cập Nhật Lần Cuối | 2023-11-23 |
Ngày Phát Hành | 2021-09-06 |
Đánh Giá | 4.44/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | edgework |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |