14 lines
400 B
JSON
14 lines
400 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Empty Link Fixer",
|
|
"version": "1.0.0",
|
|
"description": "On the configured website, fills empty anchor links (an href but no visible content) with the href as text. Also works with dynamically rendered content.",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["config.js", "content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
]
|
|
}
|