Copy any recipe from any website with just one click. Manage all your recipes in one location. Edit copied recipes or add your own. Organize with tags. Add to your shopping list and plan with the meal planner. Share your recipes and get inspired.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Copy Me That",
"version": "1.3.3",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"incognito": "not_allowed",
"permissions": [
"activeTab",
"https://*.copymethat.com/*",
"contextMenus",
"cookies"
],
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https://*.copymethat.com/*"
],
"js": [
"set_existence.js"
]
}
],
"web_accessible_resources": [
"exists.gif",
"spinner_25.gif"
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{864ff066-4e8a-451b-b27b-b63f2bf8760a}"
}
}
}