Hide distracting content while using powerful platforms
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Otli - Distraction Blocker",
"short_name": "Otli",
"version": "1.9.1",
"version_name": "1.9",
"description": "Hide distracting content while using powerful platforms",
"author": "Vadim Gouskov",
"permissions": [
"storage"
],
"host_permissions": [
"https://*.facebook.com/*",
"https://*.youtube.com/*"
],
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Otli"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://*.facebook.com/*",
"https://*.youtube.com/*"
],
"run_at": "document_start",
"css": [
"content-style.css"
]
},
{
"matches": [
"https://*.facebook.com/*",
"https://*.youtube.com/*"
],
"run_at": "document_start",
"js": [
"js/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-style.css",
"popup.css",
"options.css"
],
"matches": [
"https://*.facebook.com/*",
"https://*.youtube.com/*"
]
}
],
"icons": {
"16": "assets/otli-logo-icon-16.png",
"32": "assets/otli-logo-icon-32.png",
"48": "assets/otli-logo-icon-48.png",
"64": "assets/otli-logo-icon-64.png",
"128": "assets/otli-logo-icon-128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}