Calorie Hider

Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'

¿Qué es Calorie Hider?

Calorie Hider es una extensión de Chrome desarrollada por Mayze, y su función principal es "Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Calorie Hider

Descarga archivos de extensión Calorie Hider en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Caloric values will be replaced with "X" or any text/word of your choice. You can edit the text/word that will replace the number by clicking on the icon of the extension in the top right corner of your browser. 

For example, when this extension is activated, you won't see recipes' caloric information. This also works with Deliveroo so you can use it to order food without triggering yourself!

Disclaimer: It takes 1-3 seconds to actually hide the number (depending on the website) after the page is displayed so keep that in mind as you browse. I'm working on fixing it but in the meantime, what I do is I look away for a bit while the page loads.

Note: This extension isn't perfect, nutritional information is displayed in a lot of different ways by different websites. I did my best to cover the most common cases. However, if ever you see a site/situation where the censoring doesn't work, please comment or email me the details! That way, I can improve the accuracy of the extension for you and everyone else :)

For support please contact the creator: Mayze ([email protected])

Credit: Inspired from ElementHider and Travis Woodward's ReplaceR                    

Información Básica de la Extensión

Nombre Calorie Hider Calorie Hider
ID penendbjdgekhngildpchklobfmagenn
URL Oficial https://chromewebstore.google.com/detail/calorie-hider/penendbjdgekhngildpchklobfmagenn
Descripción Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'
Tamaño del Archivo 52.64 KB
Cantidad de Instalaciones 148
Versión Actual 1.2.2
Última Actualización 2022-07-05
Fecha de Publicación 2021-05-13
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador Mayze
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Calorie Hider",
    "description": "Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'",
    "version": "1.2.2",
    "author": "Mayze",
    "icons": {
        "16": "CHicon16.png",
        "48": "CHicon48.png",
        "128": "CHicon128.png"
    },
    "action": {
        "default_icon": "CHicon128.png",
        "default_title": "Calorie Hider",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js",
                "jquery.min.js"
            ],
            "exclude_globs": [
                "*options*"
            ]
        }
    ]
}