Google Full Image Opener
After clicking an image from search results, use the context menu (right-click) to view the current image.
Co to jest Google Full Image Opener?
Google Full Image Opener to rozszerzenie Chrome opracowane przez Arafat Husayn, a jego główną funkcją jest „After clicking an image from search results, use the context menu (right-click) to view the current image.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Full Image Opener
Pobierz pliki rozszerzeń Google Full Image Opener w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
Oficjalny URL | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
Opis | After clicking an image from search results, use the context menu (right-click) to view the current image. |
Rozmiar pliku | 39.81 KB |
Liczba instalacji | 78 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2020-08-15 |
Data Publikacji | 2020-02-05 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Arafat Husayn |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
Obsługiwane Języki | 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" } } |