Twitter Feed Redux

This extension consolidates recent tweets from accounts in your feed.

Twitter Feed Reduxคืออะไร?

Twitter Feed Redux เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension consolidates recent tweets from accounts in your feed."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Feed Redux

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}