GImages Direct
Makes your Google Images experience better .. :)
Что такое GImages Direct?
GImages Direct - это расширение Chrome, разработанное iAnuj, и его основная функция - "Makes your Google Images experience better .. :)".
Снимки экрана расширения
Скачать файл CRX расширения GImages Direct
Скачайте файлы расширений GImages Direct в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Gives you instant direct access to images. # Opens direct images in a silent background tab (a time saver for power users) # Searches for 640x480 and higher images by default # Right click context menu option to enable/disable GImages Direct. # + some miscellaneous tweaks All this to make your Google Images experience better .. :)
Основная информация о расширении
Название | |
ID | cifcbgbmllbmjpjpcnifgadnkcoimpll |
Официальный URL | https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll |
Описание | Makes your Google Images experience better .. :) |
Размер файла | 9.69 KB |
Количество установок | 20 |
Текущая Версия | 0.1.6 |
Последнее Обновление | 2012-08-26 |
Дата публикации | 2012-08-26 |
Рейтинг | 4.00/5 Всего 1 оценок |
Разработчик | iAnuj |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "GImages Direct", "description": "Makes your Google Images experience better .. :)", "version": "0.1.6", "manifest_version": 2, "icons": { "128": "icon_128.png", "48": "icon_48.png" }, "background": { "page": "bg.html" }, "content_scripts": [ { "all_frames": true, "js": [ "script.js" ], "matches": [ "*:\/\/*.google.com\/*tbm=isch*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "google-images-direct.js", "style.css" ], "permissions": [ "tabs", "contextMenus", "*:\/\/*.google.com\/*tbm=isch*" ] } |