Poop Recipes

Turns your recipe websites into something... crappy.

Cos'è Poop Recipes?

Poop Recipes è un'estensione di Chrome sviluppata da joshuakgoldbergdev, e la sua funzione principale è "Turns your recipe websites into something... crappy.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Poop Recipes

Scarica i file di estensione Poop Recipes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Poop Recipes Poop Recipes
ID bpcnpkeiadneccmlcffbdfffhmlcpnpo
URL Ufficiale https://chrome.google.com/webstore/detail/poop-recipes/bpcnpkeiadneccmlcffbdfffhmlcpnpo
Descrizione Turns your recipe websites into something... crappy.
Dimensione del File 94.19 KB
Conteggio Installazioni 129
Versione Corrente 0.1
Ultimo Aggiornamento 2014-11-16
Data di Pubblicazione 2014-11-16
Valutazione 2.78/5 Totale 9 Valutazioni
Sviluppatore joshuakgoldbergdev
Tipo di Pagamento free
Lingue Supportate 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": [
        ""
    ]
}