Calorie Hider

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

Calorie Hider란 무엇입니까?

Calorie Hider은(는) Mayze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Calorie Hider 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Calorie Hider Calorie Hider
ID penendbjdgekhngildpchklobfmagenn
공식 URL https://chromewebstore.google.com/detail/calorie-hider/penendbjdgekhngildpchklobfmagenn
설명 Calorie Hider censors calories when you're browsing the web. Ex: both '30 calories' and '1000 calories' would look like 'X calories'
파일 크기 52.64 KB
설치 횟수 148
현재 버전 1.2.2
최근 업데이트 2022-07-05
출시 날짜 2021-05-13
평점 4.25/5 총 4 개의 평점
개발자 Mayze
이메일 [email protected]
결제 유형 free
지원되는 언어 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*"
            ]
        }
    ]
}