Eye Saver 2000

A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.

Что такое Eye Saver 2000?

Eye Saver 2000 - это расширение Chrome, разработанное Unknown, и его основная функция - "A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.".

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

screenshot

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

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

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

                        This plugin is useful when you need to work on a site that is NSFW. It will replace all of the images on the page with images of kittens. It will keep track of domains you've saved previously, and you have the option of clearing your saved list.                    

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

Название Eye Saver 2000 Eye Saver 2000
ID dlohfhgdankcdmfpfbjhlccdnjndfbaj
Официальный URL https://chromewebstore.google.com/detail/eye-saver-2000/dlohfhgdankcdmfpfbjhlccdnjndfbaj
Описание A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.
Размер файла 12.29 KB
Количество установок 20
Текущая Версия 1.0
Последнее Обновление 2020-03-17
Дата публикации 2020-03-17
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eye Saver 2000",
    "version": "1.0",
    "author": "Joe Burton",
    "description": "A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "eyesaver_16.png",
        "32": "eyesaver_32.png",
        "128": "eyesaver_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "eyesaver_16.png",
            "32": "eyesaver_32.png",
            "128": "eyesaver_128.png"
        },
        "default_popup": "popup.html"
    }
}