RecipeCleaner

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

什么是RecipeCleaner?

RecipeCleaner是由Erik Price开发的Chrome扩展程序,该扩展的主要功能是“Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.”。

扩展截图

screenshot
screenshot
screenshot

下载RecipeCleaner扩展crx文件

下载RecipeCleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 RecipeCleaner RecipeCleaner
ID omonbdfjebcopdfdkiaaajifkaelcohp
官方URL https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp
简介 Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
文件大小 583 KB
安装次数 423
当前版本 2.3.2
更新时间 2022-05-19
上架时间 2019-06-24
评分 5.00/5 共5次评分
开发者 Erik Price
电子邮箱 [email protected]
付费类型 free
扩展官网 https://erik.github.io/recipecleaner
帮助页面URL https://goo.gl/forms/bsr8RJJoeiXDKJqo2
支持的语言 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';"
}