Timeline Unsee

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

什么是Timeline Unsee?

Timeline Unsee是由Yuriy Dorogoy开发的Chrome扩展程序,该扩展的主要功能是“Unsubscribe from anything directly from timeline in one click! Supports: Facebook”。

扩展截图

screenshot

下载Timeline Unsee扩展crx文件

下载Timeline Unsee扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Timeline Unsee Timeline Unsee
ID kndlpfnhahnkkfgdipfppkfhabehkhda
官方URL https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda
简介 Unsubscribe from anything directly from timeline in one click! Supports: Facebook
文件大小 59.14 KB
安装次数 18
当前版本 0.11
更新时间 2019-03-23
上架时间 2019-03-22
评分 5.00/5 共5次评分
开发者 Yuriy Dorogoy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/dearcj/timeline-unsubscribe
支持的语言 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"
    }
}