Poop Recipes

Turns your recipe websites into something... crappy.

什么是Poop Recipes?

Poop Recipes是由joshuakgoldbergdev开发的Chrome扩展程序,该扩展的主要功能是“Turns your recipe websites into something... crappy.”。

扩展截图

screenshot

下载Poop Recipes扩展crx文件

下载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": [
        ""
    ]
}