RecipeCleaner
Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Cos'è RecipeCleaner?
RecipeCleaner è un'estensione di Chrome sviluppata da Erik Price, e la sua funzione principale è "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RecipeCleaner
Scarica i file di estensione RecipeCleaner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | RecipeCleaner |
ID | omonbdfjebcopdfdkiaaajifkaelcohp |
URL Ufficiale | https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp |
Descrizione | Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites. |
Dimensione del File | 583 KB |
Conteggio Installazioni | 423 |
Versione Corrente | 2.3.2 |
Ultimo Aggiornamento | 2022-05-19 |
Data di Pubblicazione | 2019-06-24 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Erik Price |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://erik.github.io/recipecleaner |
URL della Pagina di Aiuto | https://goo.gl/forms/bsr8RJJoeiXDKJqo2 |
Lingue Supportate | 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';" } |