RecipeCleaner

Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.

RecipeCleaner란 무엇입니까?

RecipeCleaner은(는) Erik Price에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Even with an ad blocker, recipe sites are a messy experience. Popups ask you to subscribe, there are pages and pages of filler text and images to scroll through, and then finally the recipe is tucked away at the bottom somewhere.

RecipeCleaner shows you only what you care about: what you're making, what you need, and how to make it.                    

확장 프로그램 기본 정보

이름 RecipeCleaner RecipeCleaner
ID omonbdfjebcopdfdkiaaajifkaelcohp
공식 URL https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp
설명 Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
파일 크기 583 KB
설치 횟수 423
현재 버전 2.3.2
최근 업데이트 2022-05-19
출시 날짜 2019-06-24
평점 5.00/5 총 5 개의 평점
개발자 Erik Price
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://erik.github.io/recipecleaner
도움말 페이지 URL https://goo.gl/forms/bsr8RJJoeiXDKJqo2
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RecipeCleaner",
    "version": "2.3.2",
    "description": "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.",
    "icons": {
        "32": "icons\/icon-detected-32.png",
        "48": "icons\/icon-detected-48.png",
        "96": "icons\/icon-detected-96.png"
    },
    "page_action": {
        "browser_style": true,
        "default_icon": "icons\/icon-detected-96.png",
        "default_title": "Show me the recipe!"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'sha256-58XC9A7vCVf4d\/kGzBMGAy2dBerh5XDULiZ80gbeBP0='; object-src 'self';"
}