Inspect and view changes in Essential Food Label 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Essential Food Label",
"version": "2.4.0",
"description": "Your food label distilled into three items: price per kcalorie, number of ingredients, presence or absence of flavoring.",
"content_scripts": [
{
"matches": [
"https://www.tesco.com/*"
],
"js": [
"jquery.min.js",
"content_script.js"
],
"css": [
"content_style.css"
]
}
],
"icons": {
"16": "icon_popup.png",
"48": "icon_extension_page.png",
"128": "icon_store_page.png"
},
"browser_action": {
"default_popup": "ui.html"
},
"permissions": [
"https://essentialfoodlabel.herokuapp.com/*",
"https://www.tesco.com/*",
"tabs"
],
"background": {
"scripts": [
"jquery.min.js",
"js.cookie.min.js",
"background.js"
]
},
"sandbox": {
"internal_error_message": "Internal error! Please signin and try again, but if this error persist contact us",
"free_api_token": "8db955c4-13e3-4db4-975c-22a997cf9910",
"api_host": "https://essentialfoodlabel.herokuapp.com",
"store_host": "https://www.tesco.com/",
"device_key": "7YCBzqBczRe5VbqHmmQBZD6utSKwYuuGNuCZwZQ5qG9nG2"
}
}