Reddit Image Opener
Open images on Reddit directly from post previews
O que é Reddit Image Opener?
Reddit Image Opener é uma extensão do Chrome desenvolvida por RedditImageOpener, e sua principal característica é "Open images on Reddit directly from post previews".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reddit Image Opener
Baixe arquivos de extensão Reddit Image Opener no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
URL Oficial | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
Descrição | Open images on Reddit directly from post previews |
Tamanho do Arquivo | 742 KB |
Contagem de Instalações | 413 |
Versão Atual | 1.6 |
Última Atualização | 2023-09-26 |
Data de Publicação | 2022-01-25 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | RedditImageOpener |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |