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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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 |
Ηλεκτρονικό ταχυδρομείο | [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';" } |