feat: add boilerplate

This commit is contained in:
2026-05-15 21:56:07 +02:00
parent 0d3dc30e95
commit 1b30647dcf
5 changed files with 228 additions and 0 deletions

18
manifest.json Normal file
View File

@@ -0,0 +1,18 @@
{
"manifest_version": 3,
"name": "Live Text Replacer",
"version": "1.0",
"description": "Replace words and phrases on web pages using a custom dictionary.",
"permissions": ["storage", "activeTab", "scripting"],
"host_permissions": ["<all_urls>"],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}