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": "Mute Words on Substack",
"version": "1.0.2",
"description": "Mute words\/phrases on the Substack Notes timeline using network prefiltering and DOM fallback.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/substack.com\/*",
"https:\/\/*.substack.com\/*",
"https:\/\/app.substack.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/substack.com\/*",
"https:\/\/*.substack.com\/*",
"https:\/\/app.substack.com\/*"
],
"js": [
"common\/storage.js",
"content\/content.js",
"content\/panel.js"
],
"css": [
"content\/styles.css",
"content\/panel.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"content\/injector.js",
"content\/panel.css"
],
"matches": [
"https:\/\/substack.com\/*",
"https:\/\/*.substack.com\/*",
"https:\/\/app.substack.com\/*"
]
}
],
"action": {
"default_title": "Mute Words on Substack"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options\/options.html"
}