Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Great Filter",
"version": "2.3",
"description": "AI-powered content filtering for Youtube, Reddit, X, HackerNews, and Substack",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Great Filter"
},
"permissions": [
"storage",
"tabs",
"activeTab"
],
"host_permissions": [
"https:\/\/*.vercel.app\/*",
"https:\/\/openrouter.ai\/*",
"https:\/\/www.youtube.com\/*",
"https:\/\/news.ycombinator.com\/*",
"https:\/\/*.reddit.com\/*",
"https:\/\/x.com\/*",
"https:\/\/*.substack.com\/*"
],
"background": {
"service_worker": "background.js",
"scripts": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/prompts.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/content-base.js",
"shared\/prompts.js",
"content-scripts\/youtube.js"
],
"css": [
"shared\/filter-styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/news.ycombinator.com\/*"
],
"exclude_matches": [
"https:\/\/news.ycombinator.com\/item*"
],
"js": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/content-base.js",
"shared\/prompts.js",
"content-scripts\/hackernews.js"
],
"css": [
"shared\/filter-styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.reddit.com\/*"
],
"js": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/content-base.js",
"shared\/prompts.js",
"content-scripts\/reddit.js"
],
"css": [
"shared\/filter-styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/x.com\/*"
],
"js": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/content-base.js",
"shared\/prompts.js",
"content-scripts\/x.js"
],
"css": [
"shared\/filter-styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.substack.com\/*"
],
"js": [
"browser-polyfill.js",
"shared\/browser-api.js",
"config.js",
"shared\/content-base.js",
"shared\/prompts.js",
"content-scripts\/substack.js"
],
"css": [
"shared\/filter-styles.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"config.js",
"releases.json"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": [
"websiteContent",
"browsingActivity"
]
}
}
}
}