Calm Twitter

This extension hides trending information from twitter timelines to make your mind calm.

Calm Twitterคืออะไร?

Calm Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yusuke Saitoh และคุณลักษณะหลักของมันคือ "This extension hides trending information from twitter timelines to make your mind calm."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Calm Twitter

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}