Streamline your cooking experience by decluttering recipe websites, featuring ad-blocking and customized filtering.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "AllSimpleRecipes",
"version": "1.0",
"description": "Streamline your cooking experience by decluttering recipe websites, featuring ad-blocking and customized filtering.",
"manifest_version": 3,
"permissions": [
"storage",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"background": {
"service_worker": "scripts/background.js"
},
"content_scripts": [
{
"matches": [
"*://*.allrecipes.com/*"
],
"js": [
"scripts/start.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://*.allrecipes.com/*"
],
"js": [
"scripts/content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/popup.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "AllSimpleRecipes",
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"styles/injected-styles.css"
],
"matches": [
"<all_urls>"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
}
}