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,
"version": "1.0.2",
"name": "Youtube Ad Cleaner",
"description": "Youtube Ad Cleaner",
"action": {
"default_icon": {
"48": "assets\/icon\/48.png",
"128": "assets\/icon\/128.png"
},
"default_popup": "presentation\/popup.html",
"default_title": "Youtube Ad Cleaner"
},
"icons": {
"16": "assets\/icon\/16.png",
"19": "assets\/icon\/19.png",
"32": "assets\/icon\/32.png",
"38": "assets\/icon\/38.png",
"48": "assets\/icon\/48.png",
"128": "assets\/icon\/128.png"
},
"background": {
"service_worker": "\/src\/background.js",
"type": "module"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"scripting",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"\/src\/content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"\/src\/inject.js"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}