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": "LiteTube: Fix YouTube Lag & Adblock",
"version": "1.3.2",
"description": "Fix YouTube Lag & Adblock Detection. Forces lightweight player (m.) with full Desktop UI. Ad-free, SponsorBlock & Background Play.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.doubleclick.net\/*",
"*:\/\/sponsor.ajay.app\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "LiteTube AdFree Settings",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"inject.js"
],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true
},
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}