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": "YouTube Timer", "version": "1.0.2", "description": "Important Notice:\nIt does not work when tab is not active. If you want it to stop the video, you should stay on the youtube page.", "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/timer.png", "48": "icons\/timer.png", "128": "icons\/timer.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icons\/timer.png", "48": "icons\/timer.png", "128": "icons\/timer.png" } }