Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Study Mode: YouTube",
"version": "2.0.1",
"description": "Remove distractions from your YouTube sessions. Custom word-filters to remove videos and channels, remove shorts, and more!",
"icons": {
"48": "icons\/toolbar-icon48.png",
"128": "icons\/toolbar-icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/youtube.com\/*"
],
"js": [
"scripts\/contentScript.js"
],
"type": "module",
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": {
"default_icon": "icons\/toolbar-icon48.png",
"default_title": "Study Mode: YouTube",
"default_popup": "popup\/popup.html"
},
"background": {
"service_worker": "background.js"
}
}