Inspect and view changes in Contextual Recipe Finder source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Contextual Recipe Finder",
"version": "1.0",
"description": "Find recipes based on ingredients listed on the webpage.",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{7399e8fa-dbc5-4e3b-b50e-ed4e57e1f296}"
}
}
}