AI 产品解读Filter Twitter/X feed by custom categories of usernames
Helps users curate their Twitter timeline by hiding tweets from specific users grouped into custom categories, reducing noise and unwanted content.
1. User installs extension and navigates to twitter.com while logged in. 2. User opens extension popup to create categories and add Twitter usernames. 3. User selects which categories to apply and clicks 'Apply selected'. 4. Extension sends the selected category list to the background script, which compiles a list of usernames. 5. The content script injects script.js into the Twitter page, which intercepts XMLHttpRequests to Twitter's timeline API. 6. script.js parses the JSON response, removes tweets from users in the filtered list, and rewrites the response before it reaches Twitter's UI. 7. The user sees a filtered timeline without those tweets.
Create custom categories (e.g., 'news', 'animals')Assign Twitter usernames to categoriesToggle categories on/off to filter tweetsStore settings in Chrome sync storageIntercepts Twitter API responses to remove tweets from specified users client-side
- 目标用户
- Twitter/X users who want to curate their feed / Users overwhelmed by specific types of accounts or topics on their timeline
- The extension relies on Twitter's internal API structure (globalObjects.tweets, globalObjects.users). Twitter frequently changes its API, so this extension may break if Twitter updates its endpoint or JSON structure.
- The extension only works on the web version of Twitter (twitter.com) and does not support the mobile app or other clients.
- The filtering is client-side only; it does not prevent Twitter from sending the data, it just hides it from the DOM/response before rendering.
付费分析未识别到付费功能
The extension is entirely free. It uses only chrome.storage.sync for local configuration and intercepts Twitter's API client-side. There are no references to payment gateways, subscription management, license keys, or premium feature gating in the source code. The 'ISC' license in package.json is a standard open-source license, not a paid feature.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension is a content script for Twitter (https://*.twitter.com/*). It intercepts Twitter's API responses to filter tweets. To use the extension, the user must be logged into Twitter/X. The extension itself has no login UI, but the core workflow (filtering the Twitter feed) is impossible without an active Twitter session.
not working