18 lines
462 B
JSON
18 lines
462 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
} |