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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}