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
官方網址 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"
    }
}