Poop Recipes

Turns your recipe websites into something... crappy.

Was ist Poop Recipes?

Poop Recipes ist eine Chrome-Erweiterung, die von joshuakgoldbergdev entwickelt wurde, und ihr Hauptmerkmal ist "Turns your recipe websites into something... crappy.".

Erweiterungsscreenshots

screenshot

Poop Recipes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Poop Recipes-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

                        Don't bother with those boring old recipe ingredients! Poop Recipes changes them all to variants of fecal matter on your pages so you'll never have a boring, non-poopified meal again.

Full list of websites supported are:
* AllRecipes.com
* Chow.com
* Cooks.com
* EatingWell.com
* Epicurious.com
* Food.com
* FoodNetwork.com
* KraftREcipes.com
* MyRecipes.com
* SimplyRecipes.com
* TheKitchn.com
* Yummly.com                    

Grundlegende Informationen zur Erweiterung

Name Poop Recipes Poop Recipes
ID bpcnpkeiadneccmlcffbdfffhmlcpnpo
Offizielle URL https://chrome.google.com/webstore/detail/poop-recipes/bpcnpkeiadneccmlcffbdfffhmlcpnpo
Beschreibung Turns your recipe websites into something... crappy.
Dateigröße 94.19 KB
Installationsanzahl 129
Aktuelle Version 0.1
Letztes Update 2014-11-16
Veröffentlichungsdatum 2014-11-16
Bewertung 2.78/5 Insgesamt 9 Bewertungen
Entwickler joshuakgoldbergdev
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Poop Recipes",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Turns your recipe websites into something... crappy.",
    "icons": {
        "16": "Icon\/Icon16.png",
        "64": "Icon\/Icon64.png",
        "128": "Icon\/Icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "PoopRecipes.js"
            ]
        },
        {
            "matches": [
                "http:\/\/allrecipes.com\/*",
                "https:\/\/allrecipes.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "AllRecipes.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.foodnetwork.com\/*",
                "https:\/\/www.foodnetwork.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "FoodNetwork.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.thekitchn.com\/*",
                "https:\/\/www.thekitchn.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "TheKitchn.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.yummly.com\/*",
                "https:\/\/www.yummly.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Yummly.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.chow.com\/*",
                "https:\/\/www.chow.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Chow.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.epicurious.com\/*",
                "https:\/\/www.epicurious.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Epicurious.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.simplyrecipes.com\/*",
                "https:\/\/www.simplyrecipes.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "SimplyRecipes.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.myrecipes.com\/*",
                "https:\/\/www.myrecipes.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "MyRecipes.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.eatingwell.com\/*",
                "https:\/\/www.eatingwell.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "EatingWell.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.cooks.com\/*",
                "https:\/\/www.cooks.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Cooks.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.kraftrecipes.com\/*",
                "https:\/\/www.kraftrecipes.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "KraftRecipes.js"
            ]
        }
    ],
    "permissions": [
        ""
    ]
}