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": "TubeTime",
"description": "YouTube statistics at a glance",
"version": "1.0",
"icons": {
"16": "icon\/icon-16.png",
"32": "icon\/icon-32.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"action": {
"default_icon": {
"19": "icon\/icon-19.png",
"38": "icon\/icon-38.png"
},
"default_popup": "html\/popup.html"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/content.css"
],
"run_at": "document_idle"
}
],
"options_page": "html\/options.html",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*"
]
}