Disable Twitter Feed
Removes the timeline on Twitter's homepage.
什麼是Disable Twitter Feed?
Disable Twitter Feed是由https://lukasrosenstock.net開發的Chrome擴展程式,該擴展的主要功能是“Removes the timeline on Twitter's homepage.”。
擴展截圖
下載Disable Twitter Feed擴展crx文件
下載Disable Twitter Feed擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.                     擴展基本資訊
| 名稱 |  | 
| ID | oppnglmfkpdfodnepgilhcagbbdojekd | 
| 官方網址 | https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd | 
| 簡介 | Removes the timeline on Twitter's homepage. | 
| 檔案大小 | 8 KB | 
| 安裝次數 | 388 | 
| 目前版本 | 1.0 | 
| 更新時間 | 2020-12-04 | 
| 上架時間 | 2020-12-03 | 
| 評分 | 5.00/5 共 2 次評分 | 
| 開發者 | https://lukasrosenstock.net | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 支援的語言 | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Twitter Feed",
    "version": "1.0",
    "description": "Removes the timeline on Twitter's homepage.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "disablefeed.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon.png",
        "96": "[email protected]"
    }
} | |