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