Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Lovable Code Downloader",
"version": "1.0.3",
"description": "All-in-one toolkit for Lovable.dev - Copy code, download projects, clipboard history, themes & more! Not affiliated with Lovable.",
"author": "Mubashir Hassan",
"homepage_url": "https:\/\/www.mubashirhassan.com",
"action": {
"default_title": "Lovable Code Downloader",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"clipboardWrite",
"clipboardRead",
"cookies",
"downloads",
"notifications",
"storage",
"activeTab",
"contextMenus",
"tabs"
],
"commands": {
"download-project": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D"
},
"description": "Download current project"
},
"copy-last-code": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "Command+Shift+C"
},
"description": "Copy last visible code block"
},
"screenshot-code": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Screenshot last code block"
},
"search-code": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Search code blocks"
}
},
"options_page": "options.html",
"host_permissions": [
"https:\/\/lovable.dev\/*",
"https:\/\/*.lovable.dev\/*",
"https:\/\/lovable-api.com\/*",
"https:\/\/*.supabase.co\/*",
"https:\/\/api.supabase.com\/*",
"https:\/\/identitytoolkit.googleapis.com\/*",
"https:\/\/nextlovable.com\/*",
"https:\/\/ongenerate-ngok4smiba-uc.a.run.app\/*",
"https:\/\/api.vercel.com\/*",
"https:\/\/*.lovable.app\/*",
"https:\/\/test-upload-lovable-service-192702902359.europe-west1.run.app\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/lovable.dev\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"jszip.min.js",
"icons\/*",
"migration-guide.html"
],
"matches": [
"https:\/\/lovable.dev\/*",
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/lovable.dev\/*"
]
}
}