Focussed Twitter
Let's focus on the tweets!
什么是Focussed Twitter?
Focussed Twitter是由jh3y开发的Chrome扩展程序,该扩展的主要功能是“Let's focus on the tweets!”。
扩展截图
下载Focussed Twitter扩展crx文件
下载Focussed Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Focussed Twitter aims to help you focus on what you're on Twitter for, the tweets! 🙌 Features include: - Dim sides on scroll - Set the dim - Hide the sidebar - Remove tweet borders - Increase the margin between tweets - Permanently dim sides - Hide Metrics! - Hide DMs - Experimental "Everybody's an NFT" feature - Avatar Radius The original idea for better UX was that if I scrolled Twitter, I wanted everything else to fade away for a moment. No need to remove elements or break the behavior/layout 👍 Everything that "Focussed Twitter" does can be switched off or configured to your liking in the extension options 💪 Any suggestions/feedback welcome! 🐦
扩展基本信息
名称 | Focussed Twitter |
ID | efldegaojlekkkoegoeakkgknaagjeoj |
官方URL | https://chromewebstore.google.com/detail/focussed-twitter/efldegaojlekkkoegoeakkgknaagjeoj |
简介 | Let's focus on the tweets! |
文件大小 | 19.4 KB |
安装次数 | 44 |
当前版本 | 0.11 |
更新时间 | 2022-01-28 |
上架时间 | 2020-06-23 |
评分 | 4.67/5 共3次评分 |
开发者 | jh3y |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jh3y/focussed-twitter |
帮助页面URL | https://github.com/jh3y/focussed-twitter/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focussed Twitter", "version": "0.11", "short_name": "focussedtwitter", "description": "Let's focus on the tweets!", "manifest_version": 2, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "css": [ "styles\/focussed-twitter.css" ], "js": [ "scripts\/focussed-twitter.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage" ], "page_action": { "default_popup": "pages\/popup.html", "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "default_icon": { "16": "icons\/focussed_twitter_16.png", "32": "icons\/focussed_twitter_32.png", "48": "icons\/focussed_twitter_48.png", "128": "icons\/focussed_twitter_128.png" } }, "icons": { "16": "icons\/focussed_twitter_16.png", "32": "icons\/focussed_twitter_32.png", "48": "icons\/focussed_twitter_48.png", "128": "icons\/focussed_twitter_128.png" } } |