RecipeCleaner

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

RecipeCleaner क्या है?

RecipeCleaner Erik Price द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RecipeCleaner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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';"
}