Eyes on Things

Add an eye to any page

Что такое Eyes on Things?

Eyes on Things - это расширение Chrome, разработанное Sam, и его основная функция - "Add an eye to any page".

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

screenshot
screenshot
screenshot

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

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

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

                        Put eyes on anything! Simply click the new button to the right of your address bar, choose the size of your eye and have fun!

This extension does not use any of your personal data on websites. The code is available on the github repository https://github.com/kjav/Eyes-On-Things, so feel free to check that no malicious code is present.                    

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

Название Eyes on Things Eyes on Things
ID kchfinkaihmfldfnijgfeichoncahbek
Официальный URL https://chrome.google.com/webstore/detail/eyes-on-things/kchfinkaihmfldfnijgfeichoncahbek
Описание Add an eye to any page
Размер файла 19.45 KB
Количество установок 508
Текущая Версия 1.4
Последнее Обновление 2014-10-14
Дата публикации 2014-10-14
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Sam
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eyes on Things",
    "description": "Add an eye to any page",
    "version": "1.4",
    "permissions": [
        "tabs",
        ""
    ],
    "browser_action": {
        "default_title": "Add an eye.",
        "default_icon": "icon128.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "draggabilly.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}