RecipeCleaner
Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Vad är RecipeCleaner?
RecipeCleaner är en Chrome-tillägg utvecklad av Erik Price, och dess huvudfunktion är "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".
Tilläggsskärmbilder
Ladda ner RecipeCleaner-förlängningens CRX-fil
Ladda ner RecipeCleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | RecipeCleaner |
ID | omonbdfjebcopdfdkiaaajifkaelcohp |
Officiell webbadress | https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp |
Beskrivning | Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites. |
Filstorlek | 583 KB |
Antal Installationer | 423 |
Aktuell Version | 2.3.2 |
Senast Uppdaterad | 2022-05-19 |
Publiceringsdatum | 2019-06-24 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | Erik Price |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://erik.github.io/recipecleaner |
Hjälpsida URL | https://goo.gl/forms/bsr8RJJoeiXDKJqo2 |
Stödda Språk | 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';" } |