{
"name": "Paragraph breaker",
"description": "This extension will add a line break after every paragraph",
"version": "1.0",
"manifest_version": 3,
"content_scripts": [{
"matches": ["https://www.example.com/*"], //the website you want to add the line breaks to. If you want it to work on all websites use *://*/*
"js": ["script.js"],
"run_at": "document_end"
}]
}