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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |