FriendlyFeed

A Chrome extension to make Facebooks News Feed more Friendly

FriendlyFeed là gì?

FriendlyFeed là một tiện ích mở rộng Chrome được phát triển bởi Troy Forster, và tính năng chính của nó là "A Chrome extension to make Facebooks News Feed more Friendly".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng FriendlyFeed

Tải xuống các tệp mở rộng FriendlyFeed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Inspired by FriendFeed, the amazing social aggregator that Facebook bought and subsequently shutdown without incorporating any of its cool features into Facebook.

This version solves several glaring issues with the Facebook UI including:

Most Recent News Feed: Facebook offers two news feed modes that include Top News and Most Recent. The default is Top News which presents feed posts in a seemingly random order. However, since news feeds make sense when presented in a chronologically descending order the optional "Most Recent" mode is more desirable. The problem is Facebook only remembers this setting for short periods of time before reverting to the infuriating random mode. FriendlyFeed fixes this by monitoring the current mode and automatically restoring "Most Recent".

Sponsored Posts: Facebook, like most free services, relies upon advertising. Unfortunately they are not satisfied with placing ads around the news feed but also within the news feed where they disrupt the flow. This extension does *not* remove ads outside of the feed (where they belong) but it does hide them within the feed to make feed reading a more seamless experience.

People you may know: The "People you may know" box has a context menu option to hide the post but it only hides the post you have already seen. It does not hide subsequent posts. This means you see the same suggested people over and over again which is entirely redundant and annoying. FriendlyFeed assumes you will invite followers when you are ready rather than being constantly badgered with suggestions you have already chosen to ignore.

All the above features can be toggled on and off from the FriendlyFeed extension icon.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FriendlyFeed FriendlyFeed
ID jldbdnfccpgfdacojppofkfjiflclegb
URL Chính Thức https://chrome.google.com/webstore/detail/friendlyfeed/jldbdnfccpgfdacojppofkfjiflclegb
Mô tả A Chrome extension to make Facebooks News Feed more Friendly
Kích Thước Tệp 10.61 KB
Số Lần Cài Đặt 169
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2017-07-15
Ngày Phát Hành 2017-07-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Troy Forster
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FriendlyFeed",
    "version": "0.1.0",
    "description": "A Chrome extension to make Facebooks News Feed more Friendly",
    "icons": {
        "16": "img\/logo.png",
        "48": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "\/img\/logo.png",
            "24": "\/img\/logo.png",
            "32": "\/img\/logo.png"
        },
        "default_popup": "extension.html",
        "default_title": "FriendlyFeed"
    },
    "author": "Troy Forster",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "\/friendlyFeedClient.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.facebook.com\/*"
        ]
    },
    "options_page": "settings.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "short_name": "FriendlyFeed",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}