Social-Time-Tracker/manifest.json
2024-10-17 12:05:14 +02:00

36 lines
766 B
JSON

{
"manifest_version": 3,
"name": "Social Media Time Tracker",
"version": "1.0",
"description": "Suivre le temps passé sur les réseaux sociaux avec une barre de chargement permanente.",
"permissions": [
"activeTab",
"storage",
"webNavigation",
"scripting",
"alarms"
],
"icons": {
"16": "images/logo-16.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/logo-16.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}