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": "UnDistracted - Hide Facebook, YouTube Feeds",
"version": "3.6.15",
"description": "Rise above the time-sinks",
"permissions": [
"storage",
"webNavigation"
],
"optional_permissions": [
"scripting"
],
"optional_host_permissions": [
"*:\/\/*.instagram.com\/*",
"*:\/\/*.x.com\/",
"*:\/\/*.pinterest.com\/"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; object-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; font-src 'self' https:\/\/fonts.gstatic.com; connect-src https:\/\/undistracted-server.up.railway.app\/"
},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-twitter.js"
]
},
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-youtube.js"
]
},
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-facebook.js"
]
},
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-reddit.js"
]
},
{
"matches": [
"*:\/\/*.netflix.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-netflix.js"
]
},
{
"matches": [
"*:\/\/*.linkedin.com\/*"
],
"run_at": "document_start",
"js": [
"undistracted-linkedin.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_popup": "index.html",
"default_title": "UnDistracted"
},
"externally_connectable": {
"matches": [
"https:\/\/*.undistracted.app\/*"
]
}
}