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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

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