Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TimeSink",
"version": "1.0.1",
"description": "Your friendly website time tracker - because ignorance isn't always bliss \ud83d\ude09",
"permissions": [
"storage",
"tabs",
"activeTab",
"alarms"
],
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"drag.js",
"content_timesink.js"
],
"css": [
"style_timesink.css"
],
"run_at": "document_start"
}
],
"icons": {
"128": "icons\/icon_128.png"
}
}