Reddit Image Opener
Open images on Reddit directly from post previews
Reddit Image Openerとは何ですか?
Reddit Image OpenerはRedditImageOpenerによって開発されたChromeの拡張機能で、その主な機能は「Open images on Reddit directly from post previews」です。
拡張機能のスクリーンショット
Reddit Image Opener拡張機能のCRXファイルをダウンロード
Reddit Image Opener拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Reddit Image Opener adds an “Open Image” button to post previews, enabling users to quickly open the full-resolution source image of a post without having to first open the post itself. Images open in new tabs, and the extension can be configured to open these tabs in the background for viewing at a later time. Works with both single and multi-image posts.
拡張機能の基本情報
名前 | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
公式URL | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
説明 | Open images on Reddit directly from post previews |
ファイルサイズ | 742 KB |
インストール数 | 413 |
現在のバージョン | 1.6 |
最終更新日 | 2023-09-26 |
公開日 | 2022-01-25 |
評価 | 5.00/5 合計 6 レビュー |
開発者 | RedditImageOpener |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Reddit Image Opener", "version": "1.6", "description": "Open images on Reddit directly from post previews", "permissions": [ "storage", "declarativeNetRequest", "tabs" ], "host_permissions": [ "*:\/\/i.redd.it\/*", "*:\/\/preview.redd.it\/*", "*:\/\/external-preview.redd.it\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.reddit.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "icons": { "128": "img\/icon128.png", "16": "img\/icon16.png", "48": "img\/icon48.png" } } |