Google Full Image Opener
After clicking an image from search results, use the context menu (right-click) to view the current image.
¿Qué es Google Full Image Opener?
Google Full Image Opener es una extensión de Chrome desarrollada por Arafat Husayn, y su función principal es "After clicking an image from search results, use the context menu (right-click) to view the current image.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Google Full Image Opener
Descarga archivos de extensión Google Full Image Opener en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
It brings the original image link opening back on new Google Images website. How to use: After clicking an image from search results, use the context menu (right-click) to view the current image in a new tab.
Información Básica de la Extensión
Nombre | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
URL Oficial | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
Descripción | After clicking an image from search results, use the context menu (right-click) to view the current image. |
Tamaño del Archivo | 39.81 KB |
Cantidad de Instalaciones | 78 |
Versión Actual | 2.0 |
Última Actualización | 2020-08-15 |
Fecha de Publicación | 2020-02-05 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Arafat Husayn |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Full Image Opener", "short_name": "google-full-image-opener", "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.", "version": "2.0", "permissions": [ "contextMenus", "storage", "tabs", "https:\/\/www.google.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "128": "icon128.png" } } |