PixPeeker
Hover Over links to see images overlaid on current page
Что такое PixPeeker?
PixPeeker - это расширение Chrome, разработанное howlowck, и его основная функция - "Hover Over links to see images overlaid on current page".
Снимки экрана расширения
Скачать файл CRX расширения PixPeeker
Скачайте файлы расширений PixPeeker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An extension for easy viewing when on image-centered sharing sites like reddit as it loads and renders the images on the current page when you hover over the link. The extension works well with Imgur and Livememe. Supports links that link to jpeg, png, and gif as well. Hover over any text links or image links, you should see the image on the right upper corner. No ad injections of course. All the code is open source on github.
Основная информация о расширении
Название | |
ID | lacjlgodidoaogaoldfodclplagkhegl |
Официальный URL | https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl |
Описание | Hover Over links to see images overlaid on current page |
Размер файла | 51.43 KB |
Количество установок | 12 |
Текущая Версия | 0.0.6 |
Последнее Обновление | 2014-01-13 |
Дата публикации | 2014-01-13 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | howlowck |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/howlowck/pixpeek |
URL страницы помощи | https://github.com/howlowck/pixpeek/issues/new |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.6", "name": "PixPeeker", "description": "Hover Over links to see images overlaid on current page", "browser_action": { "default_icon": "media\/on.png", "default_title": "PixPeeker-Enabled" }, "permissions": [ "webNavigation" ], "background": { "scripts": [ "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "app.js" ] } ] } |