Calm Twitter
This extension hides trending information from twitter timelines to make your mind calm.
什么是Calm Twitter?
Calm Twitter是由Yusuke Saitoh开发的Chrome扩展程序,该扩展的主要功能是“This extension hides trending information from twitter timelines to make your mind calm.”。
扩展截图
下载Calm Twitter扩展crx文件
下载Calm Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
1. Hide "Explore" tab from the left column 2. Hide trends and who to follow from the right column 3. Hide numbers of replies, retweets, likes and bookmarks. . They appear when you hover the mouse cursor on the tweet 4. Hide view counts 5. Show "Calm" next to the Twitter logo Additional features (off by default, can be turned on from settings) 6. Hide the number of following 7. Hide the number of followers 8. Hide numbers of replies, retweets, and likes in detail pages 9. Hide numbers of replies, retweets, and likes, even if you hover the mouse cursor on the tweet 10. Hide Who to follow 11. Hide Topics to follow 12. Change Japanese font from Meiryo to Hiragino on Mac This extension requires a permission to save the settings and only toggles hide or show. The source code is available on Github https://github.com/yusukesaitoh/calm-twitter
扩展基本信息
名称 | Calm Twitter |
ID | cknklikacoaeledfaldmhabmldkldocj |
官方URL | https://chromewebstore.google.com/detail/calm-twitter/cknklikacoaeledfaldmhabmldkldocj |
简介 | This extension hides trending information from twitter timelines to make your mind calm. |
文件大小 | 20.66 KB |
安装次数 | 45,312 |
当前版本 | 1.5.1 |
更新时间 | 2023-11-21 |
上架时间 | 2020-05-25 |
评分 | 4.77/5 共210次评分 |
开发者 | Yusuke Saitoh |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/yusukesaitoh/calm-twitter |
支持的语言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.5.1", "manifest_version": 3, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "scripts\/background.js", "type": "module" }, "action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [ "styles\/contentscript.css" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |