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
官方網址 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\/*"
            ]
        }
    ]
}