GotoImageUrl

Directly go to image URL from Google Images,Yahoo Images,Ask Images

Что такое GotoImageUrl?

GotoImageUrl - это расширение Chrome, разработанное Muthukumaran Navaneethakrishnan, и его основная функция - "Directly go to image URL from Google Images,Yahoo Images,Ask Images".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GotoImageUrl

Скачайте файлы расширений GotoImageUrl в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension is meant for those who use search using Google image , Ask Image & Yahoo Image

Opening link in new tab from the result image will result in a frame based panel , with this extension opening link in new tab will directly open the webpage of the hosted Image.                    

Основная информация о расширении

Название GotoImageUrl GotoImageUrl
ID khaobkpabpchpjccdceoakfkohgfepca
Официальный URL https://chromewebstore.google.com/detail/gotoimageurl/khaobkpabpchpjccdceoakfkohgfepca
Описание Directly go to image URL from Google Images,Yahoo Images,Ask Images
Размер файла 25.51 KB
Количество установок 104
Текущая Версия 2.0
Последнее Обновление 2023-01-01
Дата публикации 2013-02-06
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Muthukumaran Navaneethakrishnan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.facebook.com/Gotoimageurl
URL страницы политики конфиденциальности http://deemwar.com/chrome-extn-privacypolicy.htm
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GotoImageUrl",
    "description": "Directly go to image URL from Google Images,Yahoo Images,Ask Images",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "2.0",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/imgres*",
                "https:\/\/*\/imgres*",
                "http:\/\/*\/images*",
                "https:\/\/*\/images*",
                "http:\/\/*\/fr*",
                "https:\/\/*\/fr*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}