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": "Disable YouTube Number Keyboard Shortcuts", "version": "1.0", "description": "Blocks 0-9 keys on YouTube, preventing video seek with keyboard shortcuts.", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ], "action": { "default_icon": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "default_title": "Disable YouTube Seek by Number" }, "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "background": { "service_worker": "backgroundServiceWorker.js" } }