RecipeCleaner

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

RecipeCleanerคืออะไร?

RecipeCleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erik Price และคุณลักษณะหลักของมันคือ "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RecipeCleaner

ดาวน์โหลดไฟล์ส่วนขยาย RecipeCleaner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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