Poop Recipes

Turns your recipe websites into something... crappy.

Τι είναι το Poop Recipes;

Το Poop Recipes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον joshuakgoldbergdev, και η κύρια λειτουργία του είναι "Turns your recipe websites into something... crappy.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Poop Recipes

Λήψη αρχείων επέκτασης Poop Recipes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Poop Recipes Poop Recipes
ID bpcnpkeiadneccmlcffbdfffhmlcpnpo
Επίσημο URL https://chrome.google.com/webstore/detail/poop-recipes/bpcnpkeiadneccmlcffbdfffhmlcpnpo
Περιγραφή Turns your recipe websites into something... crappy.
Μέγεθος Αρχείου 94.19 KB
Αριθμός Εγκαταστάσεων 129
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2014-11-16
Ημερομηνία Δημοσίευσης 2014-11-16
Αξιολόγηση 2.78/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής joshuakgoldbergdev
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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": [
        ""
    ]
}