RecipeCleaner

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

Wat is RecipeCleaner?

RecipeCleaner is een Chrome-extensie ontwikkeld door Erik Price, en de belangrijkste functie is "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie RecipeCleaner

Download RecipeCleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam RecipeCleaner RecipeCleaner
ID omonbdfjebcopdfdkiaaajifkaelcohp
Officiële URL https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp
Beschrijving Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Bestandsgrootte 583 KB
Aantal Installaties 423
Huidige Versie 2.3.2
Laatst Bijgewerkt 2022-05-19
Publicatiedatum 2019-06-24
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Erik Price
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://erik.github.io/recipecleaner
Help Pagina-URL https://goo.gl/forms/bsr8RJJoeiXDKJqo2
Ondersteunde Talen 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';"
}