Reddit Image Opener
Open images on Reddit directly from post previews
Cos'è Reddit Image Opener?
Reddit Image Opener è un'estensione di Chrome sviluppata da RedditImageOpener, e la sua funzione principale è "Open images on Reddit directly from post previews".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Image Opener
Scarica i file di estensione Reddit Image Opener in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
Descrizione | Open images on Reddit directly from post previews |
Dimensione del File | 742 KB |
Conteggio Installazioni | 413 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2023-09-26 |
Data di Pubblicazione | 2022-01-25 |
Valutazione | 5.00/5 Totale 6 Valutazioni |
Sviluppatore | RedditImageOpener |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |