Twitter Timeline Eradicator

This extension removes timelines from twitter, to help you avoid mindless consumption.

什么是Twitter Timeline Eradicator?

Twitter Timeline Eradicator是由Bryan开发的Chrome扩展程序,该扩展的主要功能是“This extension removes timelines from twitter, to help you avoid mindless consumption.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Twitter Timeline Eradicator扩展crx文件

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

扩展使用说明

                        It hides the most addictive parts of Twitter, like the main timeline, the Explore timeline, moments, and Trending.
It shows the most useful parts of twitter, like notifications, user profiles, individual tweets, and DMs.                    

扩展基本信息

名称 Twitter Timeline Eradicator Twitter Timeline Eradicator
ID olmgbkhifmcfpaagiaakihcgobdkmchl
官方URL https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl
简介 This extension removes timelines from twitter, to help you avoid mindless consumption.
文件大小 40.07 KB
安装次数 1,073
当前版本 2.0.1
更新时间 2020-07-20
上架时间 2020-07-03
评分 4.42/5 共19次评分
开发者 Bryan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/bryanbraun/twitter-timeline-eradicator
帮助页面URL https://github.com/bryanbraun/twitter-timeline-eradicator/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Timeline Eradicator",
    "description": "This extension removes timelines from twitter, to help you avoid mindless consumption.",
    "version": "2.0.1",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/twitter.com\/"
    ],
    "browser_action": {
        "default_icon": "quiet-bird.png",
        "default_popup": "popup.html",
        "default_title": "Twitter Timeline Eradicator"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "clean.js"
            ],
            "css": [
                "default.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "enable-main-timeline.css",
        "enable-trending.css"
    ]
}