Twitter Feed Redux

This extension consolidates recent tweets from accounts in your feed.

什么是Twitter Feed Redux?

Twitter Feed Redux是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension consolidates recent tweets from accounts in your feed.”。

扩展截图

screenshot

下载Twitter Feed Redux扩展crx文件

下载Twitter Feed Redux扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Twitter Feed Redux provides functionality that makes it easier to sift through the clutter inherent to the twitter platform.

Existing Features:

- Groups tweets from the past six hours by account so important updates from less prolific accounts don't get lost in the sea of updates from more prolific accounts.

Planned Features:

- Allow user to change grouping criteria to fit their needs.

- Add a whitelist button so users will always see all tweets from whitelisted accounts in their streams.

- Use regex to detect multipart tweets, and automatically assemble them into one larger post.

- Automatically remove advertisements.

- Add "pre-load" option that automatically loads more tweets than twitter provides by default.

- Implement de-duplication features offered by other extensions to hide tweets when the account has published the same exact tweet with a newer timestamp.                    

扩展基本信息

名称 Twitter Feed Redux Twitter Feed Redux
ID cegojbidbbjgikkihjcacmbinjhdppkg
官方URL https://chromewebstore.google.com/detail/twitter-feed-redux/cegojbidbbjgikkihjcacmbinjhdppkg
简介 This extension consolidates recent tweets from accounts in your feed.
文件大小 14.08 KB
安装次数 13
当前版本 0.11
更新时间 2017-07-05
上架时间 2017-07-05
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Feed Redux",
    "description": "This extension consolidates recent tweets from accounts in your feed.",
    "version": "0.11",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "http:\/\/twitter.com\/*",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "css": [
                "ui.css"
            ],
            "js": [
                "redux.js"
            ]
        }
    ]
}