Focussed Twitter

Let's focus on the tweets!

Focussed Twitter란 무엇입니까?

Focussed Twitter은(는) jh3y에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Let's focus on the tweets!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Focussed Twitter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}