RecipeCleaner
Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Qu'est-ce que RecipeCleaner ?
RecipeCleaner est une extension Chrome développée par Erik Price, et sa fonction principale est "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RecipeCleaner
Téléchargez les fichiers d'extension RecipeCleaner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | RecipeCleaner |
ID | omonbdfjebcopdfdkiaaajifkaelcohp |
URL Officiel | https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp |
Description | Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites. |
Taille du Fichier | 583 KB |
Nombre d'Installations | 423 |
Version Actuelle | 2.3.2 |
Dernière Mise à Jour | 2022-05-19 |
Date de Publication | 2019-06-24 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Erik Price |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://erik.github.io/recipecleaner |
URL de la Page d'Aide | https://goo.gl/forms/bsr8RJJoeiXDKJqo2 |
Langues Prises en Charge | 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';" } |