RecipeCleaner

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

Was ist RecipeCleaner?

RecipeCleaner ist eine Chrome-Erweiterung, die von Erik Price entwickelt wurde, und ihr Hauptmerkmal ist "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

RecipeCleaner-Erweiterungs-CRX-Datei herunterladen

Laden Sie RecipeCleaner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name RecipeCleaner RecipeCleaner
ID omonbdfjebcopdfdkiaaajifkaelcohp
Offizielle URL https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp
Beschreibung Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Dateigröße 583 KB
Installationsanzahl 423
Aktuelle Version 2.3.2
Letztes Update 2022-05-19
Veröffentlichungsdatum 2019-06-24
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Erik Price
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://erik.github.io/recipecleaner
Hilfeseite URL https://goo.gl/forms/bsr8RJJoeiXDKJqo2
Unterstützte Sprachen 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';"
}