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": "HaramMute - Remove Background Music from YouTube Videos",
"version": "1.0.1",
"description": "Remove background music from videos with one click. Keep the dialogue, lose the music.",
"permissions": [
"storage"
],
"author": "[email protected]",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/us.i.posthog.com https:\/\/us-assets.i.posthog.com https:\/\/api.haram-mute.com http:\/\/127.0.0.1:8765;"
},
"background": {
"service_worker": "dist\/background.bundle.js"
},
"web_accessible_resources": [
{
"resources": [
"dist\/posthog-content-bundle.js",
"ding.wav",
"icon.png",
"icon16.png",
"icon48.png",
"icon128.png"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "HaramMute"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"soundtouch.js",
"dist\/posthog-content-bundle.js",
"dist\/content.bundle.js"
]
}
]
}