RecipeCleaner
Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
ما هو RecipeCleaner؟
RecipeCleaner هو إضافة Chrome تم تطويرها بواسطة Erik Price، والميزة الرئيسية لها هي "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RecipeCleaner
قم بتنزيل ملفات الامتداد RecipeCleaner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://erik.github.io/recipecleaner |
عنوان صفحة المساعدة | 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';" } |