Inspect and view changes in The Cookery Browser Extension 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": "The Cookery Browser Extension",
"description": "Allows you to add new recipes to your Cookery account from any site you visit.",
"version": "1.9.6resigned1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"css": [
"search_enhancements.css"
],
"js": [
"jquery-3.2.0.min.js",
"search_enhancements.js"
],
"matches": [
"https://*/*"
],
"include_globs": [
"https://www.google.*/*"
]
},
{
"js": [
"mark_cookery_pages.js"
],
"matches": [
"*://thecookery.co/*"
]
}
],
"web_accessible_resources": [
"Icon-32.png"
],
"permissions": [
"*://thecookery.co/*",
"activeTab"
],
"icons": {
"16": "Icon-16.png",
"32": "Icon-32.png",
"48": "Icon-48.png",
"64": "Icon-64.png",
"128": "Icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{d05cd29b-d9cb-4fa6-94c1-8b3c75f6a8dd}"
}
}
}