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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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 } |