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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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';" } |