Timeline Unsee

Unsubscribe from anything directly from timeline in one click! Supports: Facebook

Timeline Unsee là gì?

Timeline Unsee là một tiện ích mở rộng Chrome được phát triển bởi Yuriy Dorogoy, và tính năng chính của nó là "Unsubscribe from anything directly from timeline in one click! Supports: Facebook".

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

screenshot

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

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

                        Chrome extension that allows us to unsubscribe directly from timeline (Currently Facebook only) PM. If you want to have this in other social media like twitter / reddit and so on, please share with me your thoughts.

Facebook require us to use painful way when don't want to see something anymore, first we need to click on 3 dots, then wait for asynchronous call to Facebook server, then try to find text for unsubscribing. Sometimes it's even hidden inside a "more options" sections. That's a lot of work to do actually, which prevents us from filtering what we read and see. I believe that people should have control over the flow, we should be able to hide media directly from the timeline, that's why I made this extension.

It's a lightweight JQuery + small script (90Kb in total) that triggers on scroll event. That's it. Extension is not tracking anything, it's opensource, you can check it here:
https://github.com/dearcj/timeline-unsubscribe                    

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

Tên Timeline Unsee Timeline Unsee
ID kndlpfnhahnkkfgdipfppkfhabehkhda
URL Chính Thức https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda
Mô tả Unsubscribe from anything directly from timeline in one click! Supports: Facebook
Kích Thước Tệp 59.14 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2019-03-23
Ngày Phát Hành 2019-03-22
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Yuriy Dorogoy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dearcj/timeline-unsubscribe
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Timeline Unsee",
    "description": "Unsubscribe from anything directly from timeline in one click! Supports: Facebook",
    "version": "0.11",
    "author": "Yuri Dorogoy",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "css": [
                "button.css"
            ],
            "js": [
                "cash.min.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/www.facebook.com\/*",
        "activeTab"
    ],
    "web_accessible_resources": [
        "hide3.png"
    ],
    "browser_action": {
        "default_icon": "tabico.png",
        "default_title": "Timeline unsee"
    }
}