our-nostrize/manifest.json

26 lines
566 B
JSON
Raw Permalink Normal View History

2024-08-20 09:35:23 +00:00
{
"manifest_version": 3,
"name": "LD+JSON Script Checker",
"version": "1.0",
"description": "Checks for ld+json script tags and renders their content.",
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentScript.js"]
}
]
}