FaceIt

Curate your Facebook content by upvoting and downvoting your friends' posts

FaceIt là gì?

FaceIt là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Curate your Facebook content by upvoting and downvoting your friends' posts".

Ả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 FaceIt

Tải xuống các tệp mở rộng FaceIt 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

                        Curate your Facebook content by upvoting and downvoting your friends' posts! FaceIt enables Reddit-style upvoting and downvoting capabilities for posts on your feed and in Facebook groups. Vote count is global and visible for all users, and posts with lots of downvotes will be collapsed.

This extension is not an official Facebook product, and is not affiliated with, or sponsored or endorsed by, Facebook.

----

Changelog:

0.0.4:
- Disabled annoying alert popups
- Updated icon

0.0.3:
- Post scores start at 1 instead of 0 similar to Reddit.
- Post scores and voting are now available on personal walls.
- Post scores and voting are now available on individual post links.
- When FB displays nested posts (posts that contain multiple sub-posts), this is now handled correctly.
- Video posts no longer show the incorrect score.
- Tweaked event queue timing to improve user performance on page loads.
- Posts are now collapsed at -10 rather than -25.
- Users can now toggle the visibility of each collapsed post.
- Now using local storage rather than imgur to host upvote/downvote button images.                    

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

Tên FaceIt FaceIt
ID ojoeogkcggcapbgdmhjhkkecoagbammf
URL Chính Thức https://chromewebstore.google.com/detail/faceit/ojoeogkcggcapbgdmhjhkkecoagbammf
Mô tả Curate your Facebook content by upvoting and downvoting your friends' posts
Kích Thước Tệp 293 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2020-02-16
Ngày Phát Hành 2020-02-16
Đánh Giá 3.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
URL Trang Trợ Giúp http://www.danzhang.net
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FaceIt",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Curate your Facebook content by upvoting and downvoting your friends' posts",
    "homepage_url": "http:\/\/www.danzhang.net",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/*.facebook.com\/* ",
        "http:\/\/*.facebook.com\/*",
        "storage",
        "unlimitedStorage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "exclude_globs": [
                "http:\/\/*.channel.facebook.com\/*",
                "http:\/\/static.*.facebook.com\/*",
                "http:\/\/*.facebook.com\/ai.php*",
                "http:\/\/*.facebook.com\/connect\/*",
                "https:\/\/*.channel.facebook.com\/*",
                "https:\/\/static.*.facebook.com\/*",
                "https:\/\/*.facebook.com\/ai.php*",
                "https:\/\/*.facebook.com\/connect\/*"
            ],
            "include_globs": [
                "http:\/\/*.facebook.com\/*",
                "http:\/\/facebook.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/facebook.com\/*"
            ],
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "css": [
                "src\/inject\/style.css"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/parse\/parse-1.3.0.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/upvote2.png",
        "img\/downvote2.png"
    ]
}