Files
PyUIBuilder/landingpages/landingpage/widget/manifest.json
2024-10-03 19:04:04 +05:30

30 lines
765 B
JSON

{
"manifest_version": 3,
"name": "Font tester",
"description": "Test different fonts types on a webpage. Made for developers",
"version": "1.0",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_title": "Font tester - Test different font types"
},
"permissions": ["activeTab", "scripting"],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [{
"resources": [
"content.js",
"bmc.svg",
"assets/*",
"dist/*.js",
"dist/*.css"
],
"matches": ["<all_urls>"]
}]
}