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.

O que é Eye Saver 2000?

Eye Saver 2000 é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Eye Saver 2000

Baixe arquivos de extensão Eye Saver 2000 no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Eye Saver 2000 Eye Saver 2000
ID dlohfhgdankcdmfpfbjhlccdnjndfbaj
URL Oficial https://chromewebstore.google.com/detail/eye-saver-2000/dlohfhgdankcdmfpfbjhlccdnjndfbaj
Descrição A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.
Tamanho do Arquivo 12.29 KB
Contagem de Instalações 20
Versão Atual 1.0
Última Atualização 2020-03-17
Data de Publicação 2020-03-17
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}