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.

Qu'est-ce que Eye Saver 2000 ?

Eye Saver 2000 est une extension Chrome développée par Unknown, et sa fonction principale est "A plugin to help save your eyes when you have to work on a NSFW site. Replaces all img tags with pictures of kittens.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Eye Saver 2000

Téléchargez les fichiers d'extension Eye Saver 2000 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Eye Saver 2000 Eye Saver 2000
ID dlohfhgdankcdmfpfbjhlccdnjndfbaj
URL Officiel https://chromewebstore.google.com/detail/eye-saver-2000/dlohfhgdankcdmfpfbjhlccdnjndfbaj
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.
Taille du Fichier 12.29 KB
Nombre d'Installations 20
Version Actuelle 1.0
Dernière Mise à Jour 2020-03-17
Date de Publication 2020-03-17
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}