Google Full Image Opener
After clicking an image from search results, use the context menu (right-click) to view the current image.
Что такое Google Full Image Opener?
Google Full Image Opener - это расширение Chrome, разработанное Arafat Husayn, и его основная функция - "After clicking an image from search results, use the context menu (right-click) to view the current image.".
Снимки экрана расширения
Скачать файл CRX расширения Google Full Image Opener
Скачайте файлы расширений Google Full Image Opener в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | beojccknfoajfebcpijalgejjpbdipcb |
Официальный URL | https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb |
Описание | After clicking an image from search results, use the context menu (right-click) to view the current image. |
Размер файла | 39.81 KB |
Количество установок | 78 |
Текущая Версия | 2.0 |
Последнее Обновление | 2020-08-15 |
Дата публикации | 2020-02-05 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Arafat Husayn |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md |
Поддерживаемые языки | 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" } } |