Full Screen Viewer for Instagram
Creates a picture frame from Instagram Images v1.5
O que é Full Screen Viewer for Instagram?
Full Screen Viewer for Instagram é uma extensão do Chrome desenvolvida por http://jacques-applebaum.com, e sua principal característica é "Creates a picture frame from Instagram Images v1.5".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Full Screen Viewer for Instagram
Baixe arquivos de extensão Full Screen Viewer for Instagram 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
Creates a photo magazine from Instagram photos. This extension works on instagram.com. When you navigate there it will create a picture frame from your Instagram feed. Press the "Slideshow" button to enter picture frame mode. Double click anywhere in the frame to pause the stream. Click "Add Images" to add images to the picture frame. There are themes to choose from and other settings when you click on the extension icon. ** This is not affiliated with Instagram. I made this myself. ** Feel free to send me an email with feedback. Jacques dot Applebaum @ gmail
Informações Básicas da Extensão
Nome | |
ID | loaoibajbaeflfkkbclalljffkhnffgj |
URL Oficial | https://chrome.google.com/webstore/detail/full-screen-viewer-for-in/loaoibajbaeflfkkbclalljffkhnffgj |
Descrição | Creates a picture frame from Instagram Images v1.5 |
Tamanho do Arquivo | 64.33 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.5 |
Última Atualização | 2021-11-17 |
Data de Publicação | 2020-06-23 |
Classificação | 3.00/5 Total de 4 Avaliações |
Desenvolvedor | http://jacques-applebaum.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://jacques-applebaum.com |
URL da Página de Ajuda | https://jacques-applebaum.com/ja_art/chrome_ext |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Full Screen Viewer for Instagram", "version": "1.5", "description": "Creates a picture frame from Instagram Images v1.5", "icons": { "16": "icon.png", "64": "woman_hat_64_icon.png", "128": "woman_hat_128px_icon.png" }, "incognito": "spanning", "web_accessible_resources": [ "d2.wasm" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "jquery-3.3.1.min.js", "d2.js", "content.js" ], "css": [ "styles.css" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |