Files
trmnl-firefox/code/manifest.json
T
2025-05-28 14:51:48 +10:00

50 lines
1.1 KiB
JSON

{
"manifest_version": 2,
"name": "TRMNL New Tab - Firefox",
"version": "1.0",
"description": "Firefox extension that brings TRMNL's calm, distraction-free environment to your new tab page for seamless clarity and focus.",
"permissions": [
"storage",
"alarms",
"http://localhost:3000/*",
"https://usetrmnl.com/*"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "trmnl-icon.png",
"48": "trmnl-icon.png",
"128": "trmnl-icon.png"
}
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://usetrmnl.com/*",
"https://www.usetrmnl.com/*",
"https://app.usetrmnl.com/*",
"http://localhost:3000/*"
],
"js": ["dashboard-content.js"]
}
],
"devtools_page": "devtools.html",
"icons": {
"16": "trmnl-icon.png",
"48": "trmnl-icon.pngp",
"128": "trmnl-icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "trmnl-newtab@usetrmnl.com"
}
}
}