Focussed Twitter

Let's focus on the tweets!

Focussed Twitter là gì?

Focussed Twitter là một tiện ích mở rộng Chrome được phát triển bởi jh3y, và tính năng chính của nó là "Let's focus on the tweets!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Focussed Twitter

Tải xuống các tệp mở rộng Focussed Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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! 🐦                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Focussed Twitter Focussed Twitter
ID efldegaojlekkkoegoeakkgknaagjeoj
URL Chính Thức https://chromewebstore.google.com/detail/focussed-twitter/efldegaojlekkkoegoeakkgknaagjeoj
Mô tả Let's focus on the tweets!
Kích Thước Tệp 19.4 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2022-01-28
Ngày Phát Hành 2020-06-23
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jh3y
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jh3y/focussed-twitter
URL Trang Trợ Giúp https://github.com/jh3y/focussed-twitter/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}