Twitter Sanitizer

Improve your Twitter experience by hiding different features.

什么是Twitter Sanitizer?

Twitter Sanitizer是由Hristiyan Dodov开发的Chrome扩展程序,该扩展的主要功能是“Improve your Twitter experience by hiding different features.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Twitter Sanitizer扩展crx文件

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

扩展使用说明

                        This extension allows you to hide different parts of Twitter.

The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet.

Here's the full list of toggles:

- Sidebars
- Profile counters
- Profile card stats
- Post RTs and likes
- Feed post actions
- Followers you know
- Notification faces                    

扩展基本信息

名称 Twitter Sanitizer Twitter Sanitizer
ID amdinnnilgkcpgohiijcejpnhgngmfdl
官方URL https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl
简介 Improve your Twitter experience by hiding different features.
文件大小 29.21 KB
安装次数 176
当前版本 1.1
更新时间 2017-06-26
上架时间 2017-06-25
评分 4.00/5 共3次评分
开发者 Hristiyan Dodov
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Sanitizer",
    "version": "1.1",
    "author": "Hristiyan Dodov",
    "description": "Improve your Twitter experience by hiding different features.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "hider.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}