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是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“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

下载Eye Saver 2000扩展crx文件

下载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"
    }
}