mirror of
https://github.com/usetrmnl/trmnl-firefox.git
synced 2026-08-13 23:18:13 -07:00
50 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|